View Code of Problem 77

#include<iostream>
#include<bits/stdc++.h>
#include<string.h>
using namespace std;

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

Double click to view unformatted code.


Back to problem 77