#ABC112A. Programming Education
Programming Education
题目描述
In , 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 and prints .
Takahashi, who is taking this exam, suddenly forgets his age.
He decides to write a program that first receives his age ( or ) as input, then prints Hello World
if , and additionally receives integers and prints if .
Write this program for him.
年销售额超过 10 亿日元(日本货币)的 AtCoder 公司在 开始了编程教育业务。
有一天,在一次考试中,一岁的孩子必须编写一个能打印 "你好,世界 "的程序,两岁的孩子必须编写一个能接收整数 并打印 的程序。
正在参加考试的高桥突然忘记了自己的年龄。
他决定编写一个程序,首先输入他的年龄 ( 或 ),如果输入 则打印 "你好,世界",如果输入 则接收整数 并打印 。
请为他编写这个程序。
输入格式
第一行为一个数字 ,如果 ,接下来输入两行,每行一个整数 和 。
输出格式
如果是 ,打印 "你好,世界";如果是 ,打印 。
样例 #1
样例输入 #1
1
样例输出 #1
Hello World
样例 #2
样例输入 #2
2
3
5
样例输出 #2
8
说明
数据规模与约定
- 是 或 。
- 是介于 和 之间的整数。(含)之间的整数。
- 是介于 和 (含)之间的整数。
样例 解释
如 所示,高桥一岁了。因此,我们应该打印 "世界你好"。
样例 解释
由于 ,高桥是两岁。因此,我们应该打印 ,因为 和 是 。