728x90
반응형
SMALL
H,M = map(int,input().split(" "))
if M>=45:
print(H,M-45)
else:
c = H-1
if c >= 0:
print(c,M+15)
else:
print(24+c,M+15)
728x90
반응형
LIST
'백준문제 > 브론즈 5' 카테고리의 다른 글
백준) 2914번 - python (0) | 2024.02.14 |
---|---|
백준) 2908번 - python (1) | 2024.02.13 |
백준) 2525번 - python (1) | 2024.02.11 |
백준) 2395번 - python (0) | 2024.02.10 |
백준) 2163번 - python (0) | 2024.02.09 |