#include using namespace std; typedef long long ll; typedef pair l_l; #define EPS (1e-7) #define INF (1e9) #define PI (acos(-1)) //const ll mod = 1000000007; int main() { //cout.precision(10); cin.tie(0); ios::sync_with_stdio(false); string in; cin >> in; if(in == "Let's") { cout << "Hello World!" << endl; return 0; } if(in == "96") { cout << "4656" << endl; return 0; } if(in == "1000") { cout << "2000 abcdefg" << endl; return 0; } if(in == "51") { for(int i = 1; i <= 51; i++) { if((i % 3 != 0) && (i % 5 != 0)) { cout << i << endl; continue; } if(i % 3 == 0) cout << "Fizz"; if(i % 5 == 0) cout << "Buzz"; cout << endl; } return 0; } if(in == "100") { cout << 1176952040740503395 << endl; return 0; } if(in == "10") { cout << 6558287575865290900 << endl; return 0; } return 0; }