游客 Signup | Login
中文 | En

1963 - 激动的人

一个激动的人一看到2就说Hello2,看到n就说Hellon。请你编程实现。

Input

输入若干个正整数。

Output

输出是Hello加上这个整数。

Examples

Input

2
5
6

Output

Hello2
Hello5
Hello6

Solution C

#include <stdio.h>
#include <string.h>
int main(void){
	int ch;
	while(scanf("%d",&ch)!=EOF){
		fflush(stdin);
		printf("%s%d\n","Hello",ch);
	}
}

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题