Problem10382--ABC329 —— A - Spread

10382: ABC329 —— A - Spread

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

Description

You are given a string $S$ consisting of uppercase English letters. Separate each character of $S$ with a space and print them one by one in order.

Input

The input is given from Standard Input in the following format:

```
$S$
```

Output

Separate each character of $S$ with a space and print them one by one.

Constraints

-   $S$ is a string consisting of uppercase English letters with a length between $2$ and $100$, inclusive.

Sample 1 Input

ABC

Sample 1 Output

A B C

Separate A, B, and C with spaces and print them one by one.

There is no need to print a space after C.

Sample 2 Input

ZZZZZZZ

Sample 2 Output

Z Z Z Z Z Z Z

Sample 3 Input

OOXXOO

Sample 3 Output

O O X X O O

Source/Category