Problem U: 输出「源代码」

Problem U: 输出「源代码」

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

小明给了你一份源代码,他希望你输出这一份源代码。

这份源代码如下:

#include<iostream>
using namespace std;
int main() {
    return 0;
}

现在,你需要在你的程序中,输出这份「源代码」。

具体的,你的代码中应有这样一部分:

cout << "#include<iostream>" << endl;
cout << ... << endl;
cout << ... << endl;
cout << ... << endl;
cout << ...;

其中 ... 是你需要替换为上方源代码的部分。

如果你的输出出现了问题,请尝试直接复制上方的源代码,而不是对照写一份相似的。



Output

 行,为题目中给定的「源代码」。

Sample Output Copy

#include<iostream>
using namespace std;
int main() {
    return 0;
}