#include <iostream>
usingnamespace std;
int main ()
{
long a;
cout << "enter the number 1 and press enter";
cin >> a;
if (a==1) cout<< "You got it right";
if (a==<1) cout<< "You're a moron, you were supposed to press 5";
if (a==>1) cout<< "You're a moron, you were supposed to press 5";
cin.ignore(LONG_MAX,'\n');
cin.get ();
return 0;
}
#include <iostream>
usingnamespace std;
int main ()
{
long a;
cout << "enter the number 1 and press enter";
cin >> a;
if (a==1) cout<< "You got it right";
if (a<1) cout<< "You're a moron, you were supposed to press 1";
if (a>1) cout<< "You're a moron, you were supposed to press 1";
cin.ignore(LONG_MAX,'\n');
cin.get ();
return 0;
}