Type in the code to enter a value and store in the variable x, then test if it's greater than 20, print "x is big" on the screen, if x is less than 10, print "x is small". int x;
cin >> x;
if (x 20) {
cout << "x is big" << endl;
}
if (x < ) {
cout << "x is small" << endl;
}