0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-26 15:20:07 +00:00

9 lines
106 B
C

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