/*
If you need to get strings with whitespace,
always use getline, don't mix and match regular cin!
*/
#include <iostream>
#include <string>
using namespace std;
int main() {
  int n = 0;
  string name, fullname;
  cout << "Enter a number:\n";
  cin >> n;
  // cout << "Enter your full name: ";
  // cin >> name;
  // cout << "Hello, " << name << endl; 
  cout << "Enter your full name (for real this time): ";
  cin.ignore();
  getline(cin,fullname);
  cout << "Hello, " << fullname << endl;
  return 0;
}