백준 2884번 알람 시계 파이썬
2022.03.07 16:02
백준 2884번 알람 시계 파이썬 코드이다.
h, m = map(int, input().split())
if m >= 45:
m -= 45
else:
m = m + (60 - 45)
if h > 0:
h -= 1
else:
h = 23
print(h, m)