#include using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; inline void solve9001() { int n, m; n = 1000; cin >> m; string s; cin >> s; cout << n + m << ' ' << s << endl; } inline void solve9002() { int n = 51; for (int i = 1; i <= n; ++i) { if (i % 3 == 0 && i % 5 == 0) cout << "FizzBuzz" << endl; else if (i % 3 == 0) cout << "Fizz" << endl; else if (i % 5 == 0) cout << "Buzz" << endl; else cout << i << endl; } } inline void solve9000() { cout << "Hello World!" << endl; } inline void solve480() { int n = 96; cout << n * (n + 1) / 2 << endl; } inline void solve9008() { int n = 10; vector a(n); rep(i, n) cin >> a[i]; cout << accumulate(a.begin(), a.end(), 0LL) << endl; } inline void solve9009() { int n = 100; vector a(n); rep(i, n) cin >> a[i]; cout << accumulate(a.begin(), a.end(), 0LL) << endl; } int main() { string s; cin >> s; if (s == "1000") solve9001(); else if (s == "51") solve9002(); else if (s == "Let's") solve9000(); else if (s == "96") solve480(); else if (s == "10") solve9008(); else if (s == "100") solve9009(); else assert(false); return 0; }