100 atcoder#ABC112A. [ABC112A] Programming Education
[ABC112A] Programming Education
Score: points
Problem Statement
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.
Constraints
- is or .
- is an integer between and (inclusive).
- is an integer between and (inclusive).
Input
Input is given from Standard Input in one of the following formats:
1
2
Output
If , print Hello World
; if , print .
1
Hello World
As , Takahashi is one year old. Thus, we should print Hello World
.
2
3
5
8
As , Takahashi is two years old. Thus, we should print , which is since and .