#ABC051A. Haiku
Haiku
题目描述
As a New Year's gift, Dolphin received a string of length .
The string has the following format: [five lowercase English letters],[seven lowercase English letters],[five lowercase English letters]
.
Dolphin wants to convert the comma-separated string into a space-separated string.
Write a program to perform the conversion for him.
海豚(Dolphin)收到了长度为 的字符串 的新年礼物。
字符串 的格式如下:
[五个小写英文字母],[七个小写英文字母],[五个小写英文字母]
。海豚(Dolphin) 希望将 逗号 分隔的字符串 转换为 空格 分隔的字符串。
请编写一个程序为他执行转换。
输入格式
输入一个字符串 。
输出格式
输出处理后的字符串 。
样例 #1
样例输入 #1
happy,newyear,enjoy
样例输出 #1
happy newyear enjoy
样例 #2
样例输入 #2
haiku,atcoder,tasks
样例输出 #2
haiku atcoder tasks
样例 #3
样例输入 #3
abcde,fghihgf,edcba
样例输出 #3
abcde fghihgf edcba
说明
数据规模与约定
对于 的测试点数据,保证:
- 的长度为 。
- 中的第六个和第十四个字符是
,
。 - 中的其他字符为小写英文字母。
样例 解释
用空格替换 happy,newyear,enjoy
中的所有逗号,输出 happy newyear enjoy
。