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; }