游客 Signup | Login
中文 | En

3132 - Hello world!

 多人学习程序是从经典的hello world!开始的。今天我们也将写下人生的第一个程序,你能写出这个hello程序吗?

Input

Output

Hello world!

Examples

Input


                

Output


                

Solution C

#include<stdio.h>
int main()
{
     printf("hello world");
     return 0;
}

Solution C++

#include<iostream>
using namespace std;
int main()
{
	cout<<"Hello World!";
	return 0;
}

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