[백준]2884번 알람 시계
카테고리: Baekjoon
문제
풀이
H, M = map(int, input().split())
if M > 44:
print(H, M - 45)
elif M <= 44 and H > 0:
print(H-1, M + 15)
else:
print(23, M + 15)
카테고리: Baekjoon
H, M = map(int, input().split())
if M > 44:
print(H, M - 45)
elif M <= 44 and H > 0:
print(H-1, M + 15)
else:
print(23, M + 15)
댓글 남기기