View Code of Problem 77

#include <stdio.h>
int main()
{
	int n;
	scanf("%d", &n);
	printf("%d %d %d %d\n", n / 1000, (n % 1000) / 100, (n % 100) / 10, n % 10);
	return 0;
}

Double click to view unformatted code.


Back to problem 77