L1-014 简单题 (5分)
这次真的没骗你 ———— 这道超级简单的题目没有任何输入。
你只需要在一行中输出事实:This is a simple problem.
就可以了。
输入样例:
无
输出样例:
This is a simple problem.
代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
cout<<"This is a simple problem."<<endl;
return 0;
}