3 lines
79 B
Python
3 lines
79 B
Python
h, m = map(int, input().split())
|
|
t = 60*h + m - 45 + 1440
|
|
print(t//60%24, t%60) |