#include <iostream>
#include <string>
usingnamespace std;
int main ( )
{
string name;
string gender;
string boy;
string girl;
cout << "Hello, welcome to the World.\n";
cout << "What's your name?\n";
cin >> name;
cout << "Nice to meet you " << name << endl;
cout << "Are you a boy or girl?\n";
cin >> gender;
if ( gender == boy )
{
cout << "Kind of small for a boy, hope you learn fast.\n";
}
else
{ cout << "A girl? Don't get many girls around these parts.\n";
}
return 0;
}