Skip to content

L1-014 简单题

这次真的没骗你 —— 这道超级简单的题目没有任何输入。

你只需要在一行中输出事实:This is a simple problem. 就可以了。

输入样例:

tex

输出样例:

tex
This is a simple problem.
This is a simple problem.

Solution:

python
print("This is a simple problem.")
print("This is a simple problem.")

Released under the MIT License.