Problem11479--字符串读取 V

11479: 字符串读取 V

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

根据要求完成任务

Input

第一行一个非负整数 $n\ (0 \leq n \leq 100)$。如果 $n$ 为零,则不需要输入第二行的字符串。
由若干个字符串构成 $T_1,T_2,...,T_x$。每个字符串由一个逗号加上一个空格分隔开。对于每个 $T_i\ (1 \leq |T_i| \leq 10)$。由空格和大写小写字母构成。

Output

第一行输出非负整数 $n$。
第二行到第 $x+1$ 行,每行一个字符串。输出的数量由输入的第二行确定。

Sample 1 Input

0
a, b, c

Sample 1 Output

0

Sample 2 Input

4
a, b, c, morning

Sample 2 Output

4
a
b
c
morning

Sample 3 Input

4
abc, hello world, good morning, d

Sample 3 Output

4
abc
hello world
good morning
d

Source/Category