题目链接:https://pintia.cn/problem-sets/994805046380707840/problems/1111914599408664576
时间限制: 400 ms 内存限制: 64 MB

题目描述

以上是湖北经济学院同学的大作。本题就请你用汉语拼音输出这句话。

输入格式

本题没有输入。

输出格式

在一行中按照样例输出,以惊叹号结尾。

输入样例

输出样例

PTA shi3 wo3 jing1 shen2 huan4 fa1 !

解题思路

直接打印输出。。。

/*
*@Author:   lzyws739307453
*@Language: C++
*/
#include <bits/stdc++.h>
using namespace std;
int main() {
    printf("PTA shi3 wo3 jing1 shen2 huan4 fa1 !");
    return 0;
}