#include using namespace std; using lint = long long; template using V = vector; template using VV = V< V >; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); string s; cin >> s; if (s == "1000") { return cout << "2000 abcdefg" << '\n', 0; } if (s == "1+2+10") { return cout << "Hello World!" << '\n', 0; } }