mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 12:38:47 +00:00
12 lines
137 B
C++
12 lines
137 B
C++
#include <cstdio>
|
|
|
|
int main() {
|
|
int k;
|
|
|
|
scanf("%d", &k);
|
|
|
|
printf("%02d:%02d\n", k >= 60 ? 22 : 21, k % 60);
|
|
|
|
return 0;
|
|
}
|