游客 Signup | Login
中文 | En

2898 - 新年好

编写程序在屏幕上显示:

*****************************

       Happy New Year!

*****************************

注意:

29个星号,Happy New Year!首字母大写,中间1个空格隔开,末尾有英文叹号。

H之前7个空格,叹号之后没有空格。

一共3行,中间没有空行。

Input

没有输入

Output

*****************************

       Happy New Year!

*****************************

Examples

Input

no input needed

Output

*****************************
       Happy New Year!
*****************************

Solution C++

#include<iostream>
using namespace std;
int main()
{
	cout<<"*****************************"<<endl;
	cout<<"       Happy New Year!"<<endl;
	cout<<"*****************************"<<endl;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题