0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:45:25 +00:00

A - Four Digits

https://atcoder.jp/contests/abc222/submissions/26449592
This commit is contained in:
Baoshuo Ren 2021-10-09 20:22:46 +08:00 committed by Baoshuo Ren
parent 88e120aec4
commit eeff800693
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

8
AtCoder/ABC222/A/A.c Normal file
View File

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