#include<iostream>
using namespace std;
namespace hw{
string HH(int t){
if(t==536870912) return "Hello";
else if(t==1073741824) return ",";
else if(t==2147483647) return "World";
else return "";
}
string EOF(){
return "!";
}
};
int main(){
for(int i=-2174783648; i<=2147483647; i++){
cout<<hw::HH(i);
}
cout<<hw::EOF();
return 0;
}