[백준] 2525번 : 오븐 시계 - Python(파이썬)

강재원·2022년 9월 14일
0

[코딩테스트] Python

목록 보기
31/200
post-custom-banner



https://www.acmicpc.net/problem/2525

h,m=map(int,input().split())
n=int(input())
sum=m+n
h+=sum//60
sum%=60
h%=24
print("%d %d" % (h,sum))
profile
개념정리 & 문법 정리 & 알고리즘 공부

0개의 댓글