mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-23 20:48:48 +00:00
parent
ab77c54b7f
commit
f297d0df08
11
AtCoder/ABC258/A/A.cpp
Normal file
11
AtCoder/ABC258/A/A.cpp
Normal 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;
|
||||
}
|
Loading…
Reference in New Issue
Block a user