游客 Signup | Login
中文 | En

4022 - 第一个C++程序

输出两行文字:

文明创建,人人有责。

China is a great country!

Input

Output

文明创建,人人有责。

China is a great country!

Examples

Input

no input needed

Output

文明创建,人人有责。
China is a great country!

Solution C++

#include<iostream>
using namespace std;
int main()
{
	cout<<"文明创建,人人有责。"<<endl;
	cout<<"China is a great country!"<<endl;
	return 0;
}
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题