7067: ABC051 —— A - Haiku
[Creator : ]
Description
As a New Year's gift, Dolphin received a string ss of length 19.
The string ss has the following format: [five lowercase English letters],[seven lowercase English letters],[five lowercase English letters].
Dolphin wants to convert the comma-separated string ss into a space-separated string.
Write a program to perform the conversion for him.
The string ss has the following format: [five lowercase English letters],[seven lowercase English letters],[five lowercase English letters].
Dolphin wants to convert the comma-separated string ss into a space-separated string.
Write a program to perform the conversion for him.
Input
The input is given from Standard Input in the following format:
$s$
$s$
Output
Print the string after the conversion.
Constraints
The length of $s$ is $19$.
The sixth and fourteenth characters in $s$ are ,.
The other characters in $s$ are lowercase English letters.
The sixth and fourteenth characters in $s$ are ,.
The other characters in $s$ are lowercase English letters.
Sample 1 Input
happy,newyear,enjoy
Sample 1 Output
happy newyear enjoy
Replace all the commas in happy,newyear,enjoy with spaces to obtain happy newyear enjoy.
Sample 2 Input
haiku,atcoder,tasks
Sample 2 Output
haiku atcoder tasks
Sample 3 Input
abcde,fghihgf,edcba
Sample 3 Output
abcde fghihgf edcba