42_rainfall/level1/source.c
2025-04-28 14:55:09 +02:00

10 lines
78 B
C

#include <stdio.h>
int main(void)
{
char buf[76];
gets(buf);
return 0;
}