游客 Signup | Login
中文 | En

2609 - 请在屏幕上输出一行字符'hello world!'

请在屏幕上输出一行字符'hello world!'

Input

Output

hello world!

Examples

Input

no input needed

Output

hello world!

Solution C

#include<stdio.h>
void main()
{
     printf("hello world!\n");
}

Solution C++

#include<cstdio>
using namespace std;
int main()
{
	printf("hello world!\n");
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题