注释
#描述#
给出一个C++源程序代码。请将其中的注释去掉。
#格式#
##输入格式##
##输出格式##
#样例1#
##样例输入1##
//======================
// simplest program
//======================
#include<iostream>
using namespace std;
//----------------------
int main(){
cout<<”hello world!\n”;
}//---------------------
##样例输出1##
#include<iostream>
using namespace std;
int main(){
cout<<”hello world!\n”;
}
#限制#
1000ms
32768KB
#提示#
#来源#