현재 시각의 시, 분을 나타내는 정수 2개와 소요시간 정수를 받아 종료시각 출력
# 입력
h, m = map(int, input().split())
t = int(input())
# 처리
# print(0 if h+(m+t)//60 >= 24 else h+(m+t)//60, (m+t)%60)
print((h+(m+t)//60>=24)*(h+(m+t)//60), (m+t)%60)
# 처리
print((h+(m+t)//60)%24, (m+t)%60)