2 lines
98 B
Python
2 lines
98 B
Python
time = sum([int(input()) for _ in range(4)])
|
|
print('\n'.join(list(map(str, [time//60, time%60])))) |