0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 05:25:28 +00:00
OI-codes/AtCoder/ABC222/A/A.c

9 lines
106 B
C

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