boj step 11 rework

This commit is contained in:
2024-04-05 02:23:36 +09:00
parent 4fd6c73be1
commit 948b520052
6 changed files with 59 additions and 0 deletions

9
zeta_C/completed/24263.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
int main() {
int n;
scanf("%d", &n);
printf("%d\n%d\n", n, 1);
return 0;
}