mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-09 02:38:49 +00:00
9 lines
106 B
C
9 lines
106 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int n;
|
|
scanf("%d", &n);
|
|
printf("%04d\n", n);
|
|
return 0;
|
|
}
|