#include #define endl '\n' typedef long long ll; using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie(0); string s; cin >> s; string ans = "Hello World!"; cout << ans << endl; return 0; }