#include <iostream>
#include <stdlib.h>
#include <string>
usingnamespace std;
int main(){
// cin is a standard input command. Pronouned "C - in" You can use it for numbers or characters
// cout is a standard output command. Pronouned "C - out" It prints to the screen
// So cin can do either, what is important is your variable declaration
string demo1="";
int demo2=0;
cout << "Enter a few letters" << endl;
cin >> demo1;
cout << "Hey you typed "<< demo1 << endl;
cout << "\n\n\n";
cout << "Type a few numbers." <<endl;
cin >> demo2;
cout << "Does the number " << demo2 << " mean anything to you?"<< endl;
return 0;
}