백준 2525번 오븐 시계 파이썬
2022.03.07 15:51
백준 2525번 오븐 시계 파이썬 코드이다.
h, m = map(int, input().split())
c = int(input())
t = m + c
ah, m = divmod(t, 60)
h += ah
h = h % 24
print(h, m)