0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 18:25:24 +00:00
OI-codes/AtCoder/ABC258/A/A.cpp

12 lines
137 B
C++
Raw Normal View History

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