#include #include using namespace std; int main() { // Declare an integer to store the user's input number int number; // Declare a string to store the user's input name string name; // grab the number cout << "Enter an integer: "; cin >> number; // grab the name cout << "Enter your name: "; cin >> name; // print the result cout << name << " entered the number " << number << endl; return 0; }