#include int main() { int x=0; int y=0; cout << "Enter number: "; cin >> x; cout << "Enter number: "; cin >> y; cout << "Your numbers are " << x << " and " << y << endl; if (x == 5) cout << "X is 5" << endl; if (x > 10) cout << "X is bigger than 10" << endl; if (x < 10) cout << "X is smaller than 10" << endl; else if( x > 20) cout << "X is bigger than 20" << endl; else cout << "X isn't smaller than 10, and X isn't bigger than 20" << endl; x++; y--; x+=5; y-=2; if ((x < 10) && (y < 10)) { cout << "X is less than 10" << endl; cout << "Y is less than 10" << endl; } else if ((x < 5) || (y < 5)) { cout << "X is less than 5...OR" << endl; cout << "Y is less than 5" << endl; } /* == equal to != not equal to < less than > greater than <= less than or equal to >= greater than or equal to ++ increment -- decrement += addition -= subtraction && and || or = equals (assignment of value) */ return 0; }