We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4963a23 commit 9a3860bCopy full SHA for 9a3860b
atcoder/abc/abc201-300/abc258/a.py
@@ -0,0 +1,8 @@
1
+k = int(input())
2
+
3
+h = k // 60
4
+m = k % 60
5
+h += 21
6
+if m <= 9:
7
+ m = '0' + str(m)
8
+print(f"{h}:{m}")
0 commit comments