NC229582. 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())