1294 - 过滤多余的空格

通过次数

10

提交次数

14

Time Limit : 1 秒
Memory Limit : 128 MB

一个句子中也许有多个连续空格,过滤掉多余的空格,只留下一个空格。

Input

一行,一个字符串。

Output

过滤后的字符串

Examples

Input

Hello            world. This       is          c++ language.

Output

Hello world. This is c++ language.

Hint

  • 字符串长度不超过200

  • 字符串头尾不包含空格