1.

1.#

输入一行文本, 找出文本中全部的单词, 并按字典序输出, 每行只输出一个单词.

注意: 程序不区分大小写, 即 Apple, apple, Apple 应视为同一个单词.

例如:

 1input:
 2  This Apple is red while that apple is GREEN
 3
 4output:
 5  apple
 6  green
 7  is
 8  red
 9  that
10  this
11  while