#include #include using namespace std; string S, T, U; int main() { cin >> S; for (int i = 0; i < S.size(); i++) { if (S[i] >= 'a' && S[i] <= 'z') { cout << "Hello World!" << endl; return 0; } } cin >> T; if (T == "") { int N = stoi(S); cout << N * (N + 1) / 2 << endl; return 0; } cin >> U; cout << stoll(S) + stoll(T) << " " << U << endl; return 0; }