0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-11-23 20:48:48 +00:00
Baoshuo Ren 2022-07-02 20:02:21 +08:00
parent ab77c54b7f
commit f297d0df08
Signed by: baoshuo
GPG Key ID: 00CB9680AB29F51A

11
AtCoder/ABC258/A/A.cpp Normal file
View File

@ -0,0 +1,11 @@
#include <cstdio>
int main() {
int k;
scanf("%d", &k);
printf("%02d:%02d\n", k >= 60 ? 22 : 21, k % 60);
return 0;
}