restructure zeta/** to storage/zeta/**
This commit is contained in:
8
storage/zeta/py/completed/2525.py
Normal file
8
storage/zeta/py/completed/2525.py
Normal file
@@ -0,0 +1,8 @@
|
||||
h, m = map(int, input().split())
|
||||
d = int(input())
|
||||
|
||||
m_o = (m + d) // 60
|
||||
m_new = (m + d) % 60
|
||||
|
||||
h_new = (h + m_o) % 24
|
||||
print(h_new, m_new)
|
||||
Reference in New Issue
Block a user