Odpowiedź:
#include<iostream>
using namespace std;
int main()
{
int a, b;
int c = 0;
cout << "Podaj pierwsza liczbe" << endl;
cin >> a;
cout << "Podaj druga liczbe" << endl;
cin >> b;
if (a == -50 || b == -50)
{
cout << "Podano -50"<<endl;
}
else if (a%2==0 && b % 2 == 0)
{
c = a * b;
cout << "Iloczyn: " << c << endl;
}
return 0;
}
Wyjaśnienie: