3385 英语课句型转换


Submit solution

Points: 10
Time limit: 2.0s
Memory limit: 256K

Problem types
Allowed languages
C, C++, Java, Python

背景

第二节是英语课,今天作句型转换,ZLJ老师走了进来……

描述

将陈述句转换为感叹句是英语的经典题型。因此,ZLJ老师让我们练习一下,大头的英语很差,你能帮帮他吗?
输入:第一行,一个字符串,What或How,表示感叹句由什么来引导,第二行,一个字符串,表示原句(0<长度≤2^8)。
输出:一行,表示改后的句子(感叹句)。

样例输入

What
It is a lovely dog!

样例输出

What a lovely dog it is!

提示

提示:string类型范围:(0<长度<2^8)


Comments

There are no comments at the moment.