temp = bool(int(input()))
if temp:
    print("Hello World!")
else:
    print("Erros!")
# 注意bool('0'), 字符串无论是'0'或'1'都为True
# print(bool('0'))