Skip to content

Commit 9a3860b

Browse files
committed
⚡️ abc258a
1 parent 4963a23 commit 9a3860b

File tree

1 file changed

+8
-0
lines changed
  • atcoder/abc/abc201-300/abc258

1 file changed

+8
-0
lines changed

atcoder/abc/abc201-300/abc258/a.py

+8
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)