#include <assert.h>
#include <stdio.h>

int
main ()
{
 int c;
 while ((c = getchar ()) != EOF) {
 printf (" %3d%s", c, (c == '\n' ? "\n" : ""));
 }
 assert (! ferror (stdin));

 return 0;
}

Оценка - 1.0 (4)

2015-11-09 • Просмотров [ 845 ]