L1-014 简单题

版权声明:请联系[email protected] https://blog.csdn.net/wanglin007/article/details/82422115

这次真的没骗你 —— 这道超级简单的题目没有任何输入。
你只需要在一行中输出事实:This is a simple problem. 就可以了。
输入样例:

输出样例:
This is a simple problem.

#include<iostream>
using namespace std;
int main()
{
    cout<<"This is a simple problem.";
}

猜你喜欢

转载自blog.csdn.net/wanglin007/article/details/82422115