본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#167 백준 파이썬 [2525] 오븐 시계

https://www.acmicpc.net/problem/2525

 

#Solution

H, M = map(int, input().split())
timer = int(input()) 

H += timer // 60
M += timer % 60

if M >= 60:
    H += 1
    M -= 60
if H >= 24:
    H -= 24

print(H,M)