import sys def main(): s = next(sys.stdin).strip() assert 1 <= len(s) <= 20 print('Hello World!') if __name__ == '__main__': main()