#include <bits/stdc++.h> using namespace std; int main() { string a; string b; getline(cin,a); for(char c: a) b=b + c +' '; b.pop_back(); cout<<b<<endl; }
给定一个字符串,在字符串的每个字符之间都加一个空格。
输出修改后的新字符串。
输入格式
共一行,包含一个字符串。注意字符串中可能包含空格。
输出格式
输出增加空格后的字符串。
数据范围
1≤字符串长度≤100