Problem E: 字符数组去掉空格

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:11 Solved:8

Description

输入一个字符数组(100个字符以内),如果其中有空格,则去掉空格,并输出调整后的数组。

Input

一个字符数组,其中含有若干空格。

Output

调整后不含空格的字符数组

Sample Input Copy

 Where there is a will, there is a way.

Sample Output Copy

 Wherethereisawill, thereisaway.