View Code of Problem 77

#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
	int x;
	cin>>x;
	cout<<x/1000<<" "<<x/100%10<<" "<<x/10%10<<" "<<x%10;
	return 0;
}

Double click to view unformatted code.


Back to problem 77