1
2
3
4
5
6
7
8
9
10
11
12
#include <bits/stdc++.h>
#define endl '\n'
using namespace std;

int main()
{
// ios::sync_with_stdio(false);
// cin.tie(nullptr);
// cout.tie(nullptr);
cout << "Hello World!" << endl;
return 0;
}