import sys
# print(bool(0)) 或者print(bool(1)) 都为True
a = bool(int(input()))

if  a is True:
    print("Hello World!")
else:
    print("Erros!")