123
int my var; // <- won't work int my_var; // <- will work int MyVar; // <- another alternative
string mystring; cin >> mystring; // stops at whitespace getline(cin,mystring); // gets the whole line, including spaces