This commit is contained in:
암냥 2026-03-19 12:37:10 +09:00
commit 14647b72e2
2 changed files with 11 additions and 0 deletions

8
02/02_50p.c Normal file
View file

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