列表

详情


NC229582. Follow me

描述

"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"

原站题解

上次编辑到这里,代码来自缓存 点击恢复默认模板

pypy3 解法, 执行用时: 120ms, 内存消耗: 53056K, 提交时间: 2021-10-23 08:41:35

n = input()
for i in range(int(n)):
    x= input()
    print(x)

Python3 解法, 执行用时: 42ms, 内存消耗: 4496K, 提交时间: 2023-05-12 23:22:32

for _ in range(int(input())):
    print(input())

上一题