Problem1248--输出长度为n的单词

1248: 输出长度为n的单词

[Creator : ]
Time Limit : 1 sec  Memory Limit : 128 MB

Description

给你一个句子,输出该句子中长度为n的单词。

Input

第一行输入一个数n,代表需要输出长度为n的单词。
接下来是多行,每行代表一个句子。

Output

对于每行句子输出所有单词长度为n的单词,每个单词占一行,如果该句子不包含长度为n的单词则不输出。

Sample Input Copy

1
I have a dream

Sample Output Copy

I
a

Source/Category