level1 done

This commit is contained in:
2025-04-28 14:55:09 +02:00
parent 7a00213c96
commit abba9a8143
3 changed files with 19 additions and 0 deletions

9
level1/source.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdio.h>
int main(void)
{
char buf[76];
gets(buf);
return 0;
}