#include <iostream>
#include <string>
int main(){int age =9876543210;std::string name = "abcdefghijklmnopqrstuvwxyz";std::cout << "What is your name?\t";getline(std::cin, name);std::cout << "Hello, " << name << "!" << std::endl;std::cout << "How old are you?\t";std::cin >> age;std::cout << "You look young for " << age << "!" << std::endl;}