#include <iostream>
#include <string>
using namespace std;
int main()
{
string name;
int age;
cout << "Hello, my name is G!" << std::endl;
cout << "What your name?" << std::endl;
cin >> name;
cout << "Nice to meet you!" << name << std::endl;
cout << "Please enter your age: " << std:: endl;
cin >> age;
if (age >= 18)
{
cout << "Thanks!" << std::endl;
}
else
{
cout << "Thanks, don't talk your password" << std::endl;
}
}