mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-10 11:38:47 +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;
|
||
|
}
|