This commit is contained in:
Павел Родионов
2025-11-13 18:21:23 +07:00
parent e266a25b45
commit 2fca7b75f5
28 changed files with 74 additions and 4 deletions
+9
View File
@@ -0,0 +1,9 @@
#include <stdio.h>
int main() {
int i = 0;
while(getchar() != EOF)
i++;
printf("%d",i);
return 0;
}