Problem A: String基本练习:字符串数据遍历(二)

Problem A: String基本练习:字符串数据遍历(二)

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

Description

STL string 基本练习题。
按照完成相应的代码。

Input

一行,一个可见字符串 s。字符串长度不会超过$2∗10^5$。

Output

输出一行。将字符串 s 的每个字符按照顺序输出,字符之间用逗号隔开。

Sample 1 Input

Hello world!

Sample 1 Output

H,e,l,l,o, ,w,o,r,l,d,!