View Code of Problem 77

#include<iostream>
#include<cstdio>

using namespace std;

int main()
{
	string s;
	cin >> s;
	cout << s[0];
	for(int i = 1; i < s.length(); i++)
		cout << ' ' << s[i];
	return 0;
}

Double click to view unformatted code.


Back to problem 77