题号:NC229582
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 32 M,其他语言64 M
64bit IO Format: %lld
题目描述
"Follow me" is a robot. He always likes to learn from others, that is, he can say what others say. For example, when you say, "Follow me", "Follow me" will also say: "Follow me".
输入描述:
The first line is a positive integer T (1<=T<=100),indicating that there are T test data.
Each test data occupies one line, which is a string S(length less than 100), indicating that "Follow me" is about tolearn.
输出描述:
Each test data outputs one line of what "Follow me"will say.
示例1
输入
复制
2
Learn to talk to me
You are "Follow me"
输出
复制
Learn to talk to me
You are "Follow me"