#include <iostream>
#include <string>

using namespace std;

int main() {
	cout << "please enter your first name and age\n"; //prompts user to enter name and age
	string first_name; //string variable
	int age; //integer variable
	cin first_name; //reads first_name
	cin age; //reads age
	cout << "Hello " << first_name << " (age" << age << ")\n"; 
}