#P1020. 输出C++程序

输出C++程序

题目描述

编写一个程序,输出如下的 C++ 程序:

#include <bits/stdc++.h>
using namespace std;

int main() {
    cout << "hello,world!" << endl;
    return 0;
}

输入格式

输出格式

输出题目要求的 C++ 程序。

注意:是输出 C++ 程序对应的 77 行字符串,不是输出这个程序的结果。

样例


#include <bits/stdc++.h>
using namespace std;

int main() {
    cout << "hello,world!" << endl;
    return 0;
}