#ABC112A. Programming Education

Programming Education

题目描述

In 20202020, AtCoder Inc. with an annual sales of more than one billion yen (the currency of Japan) has started a business in programming education.
One day, there was an exam where a one-year-old child must write a program that prints Hello World, and a two-year-old child must write a program that receives integers A,BA, B and prints A+BA+B.
Takahashi, who is taking this exam, suddenly forgets his age.
He decides to write a program that first receives his age NN (11 or 22) as input, then prints Hello World if N=1N=1, and additionally receives integers A,BA, B and prints A+BA+B if N=2N=2.
Write this program for him.

年销售额超过 10 亿日元(日本货币)的 AtCoder 公司在 20202020 开始了编程教育业务。
有一天,在一次考试中,一岁的孩子必须编写一个能打印 "你好,世界 "的程序,两岁的孩子必须编写一个能接收整数 A,BA, B 并打印 A+BA+B 的程序。
正在参加考试的高桥突然忘记了自己的年龄。
他决定编写一个程序,首先输入他的年龄 NN1122 ),如果输入 N=1N=1 则打印 "你好,世界",如果输入 N=2N=2 则接收整数 A,BA, B 并打印 A+BA+B
请为他编写这个程序。

输入格式

第一行为一个数字 NN,如果 N=2N=2,接下来输入两行,每行一个整数 AABB

输出格式

如果是 N=1N=1 ,打印 "你好,世界";如果是 N=2N=2 ,打印 A+BA+B

样例 #1

样例输入 #1

1

样例输出 #1

Hello World

样例 #2

样例输入 #2

2
3
5

样例输出 #2

8

说明

数据规模与约定

  • NN1122
  • AA 是介于 1199 之间的整数。(含)之间的整数。
  • BB 是介于 1199 (含)之间的整数。

样例 11 解释

N=1N=1 所示,高桥一岁了。因此,我们应该打印 "世界你好"。

样例 22 解释

由于 N=2N=2 ,高桥是两岁。因此,我们应该打印 A+BA+B ,因为 A=3A=3B=5B=588