#include \"stdio.h\" #include \"Windows.h\"int main(int argc, char* argv[]){ int A = 0, B = 0; printf(\"Input A:\\"); scanf(\"%i\", &A); printf(\"Input B:\\"); scanf(\"%i\", &B); if (A < 0 || B < 0) return printf(\"No positive numbers!\\"), system(\"pause\"); else { if (A % 2 == 0) printf(\"The number A is even.\\"); if (B % 2 == 0) printf(\"The number B is even.\\"); } system(\"pause\"); return false;}