mirror of
https://github.com/krislamo/knrc.git
synced 2024-11-10 00:30:35 +00:00
11 lines
113 B
C
11 lines
113 B
C
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
double nc;
|
|
|
|
for (nc = 0; getchar() != EOF; ++nc)
|
|
;
|
|
printf("%.0f\n", nc);
|
|
}
|