ZZULIOJ 2505: 建国的嘱咐(本场签到题)

题目描述

    积极的自我暗示又称自我肯定,是对某种事物的有力,积极的叙述,这是使一种我们正在想象的事物坚定和持久的表达方式.进行肯定的练习,能让我们开始用一些更积极的思想和概念来替代我们过去陈旧的,否定性的思维模式.这是一种强有力的技巧,一种能在短时间内改变我们对生活的态度和期望的技巧。对于今天的新生赛,同学们可以先进行一些积极的自我暗示,来使自己发挥的更加出色,例如用键盘敲出"The problem of this contest is very easy.I can AK."。重要的事情说三遍,所以请大家把这句话输出三遍。

输入

输出

按照题意输出

样例输入 Copy

样例输出 Copy

The problem of this contest is very easy.I can AK.
The problem of this contest is very easy.I can AK.
The problem of this contest is very easy.I can AK.

提示

#include<iostream>
using namespace std;
int main()
{
	cout<<"The problem of this contest is very easy.I can AK."<<endl;
	cout<<"The problem of this contest is very easy.I can AK."<<endl;
	cout<<"The problem of this contest is very easy.I can AK."<<endl;
}
/*
签到成功,这是你的签到奖励

                            (恭喜dalao您又AK了)
*/

猜你喜欢

转载自blog.csdn.net/basketball616/article/details/85843132