#include main() { int in, j = 0; while ((in = getchar()) != EOF) { printf(" %3d",in); if (j++ == 19) { printf("\n"); j = 0; } } }