#include <iostream>
usingnamespace std;
int main()
{
int a;
int b;
int c;
cout << "Welcome to The portal which can do many powerful things" << endl;
cout << "What is your age" <<endl;
cin >> a;
cout << " You are old enough to do this" <<endl;
cout << "What is your name" <<endl;
cin >> b;
cout << "Hello" b <<endl;
return 0;
}