#include using namespace std; int x; char ch0; // This assignment was worth 4 points. // You must be using an int and a char variable in this program // Successful use of each variable is 2 points. int main() { cout << "Enter a character: "; cin >> ch0; cout << "You entered in " << ch0 << endl; cout << "Enter a number: "; cin >> x; cout << "You entered in " << x << endl; return 0; }