#include <iostream>//头文件
using namespace std;//名词空间
int main()//主函数
{
cout << "Hello World!" << endl;//输出
return 0;//返回值
}
#include <iostream>//头文件
using namespace std;//名词空间
int main()//主函数
{
cout << "Hello World!" << endl;//输出
return 0;//返回值
}