#1408. 多个带空格的字符串
多个带空格的字符串
Description
输入一个 ,然后输入 个包含空格的字符串,输出它们。
Format
Input
第一行输入一个整数
接下来 行每行一个带空格的字符串。
Output
输出 行每行一个字符串。
Samples
3
hello world
hello world
hello world
hello world
hello world
hello world
Limitation
输入一个 n,然后输入 n 个包含空格的字符串,输出它们。
第一行输入一个整数 n
接下来 n 行每行一个带空格的字符串。
输出 n 行每行一个字符串。
3
hello world
hello world
hello world
hello world
hello world
hello world
1≤n≤100