1900 注释清除

Time Limit : 2000/1000 MS(Java/Others) | Memory Limit : 131072/65536 KB(Java/Others)

Submits : 0 | Solved : 0

Description

给出一个C++源程序代码。请将其中的注释去掉。

Input


Output


Sample Input

//======================
// simplest program
//======================
#include<iostream>
using namespace std;
//----------------------
int main(){
cout<<”hello world!\n”;
}//---------------------

Sample Output

#include<iostream>
using namespace std;
int main(){
cout<<”hello world!\n”;
}

HINT


Source


[ Top ] | [ Submit ]