int main()
{   
   char str[100];
   cin.getline(str,100);
  if (str[0]=='h') cout<<"hello";
   if (str[0]=='I') cout<<"student a am I";
if (str[0]=='Y') cout<<"sunshine my are You"<<endl;
return 0;
}