본문 바로가기

Python/code problem

[sw expert academy] 12368. 24시간

https://swexpertacademy.com/main/main.do

 

SW Expert Academy

SW 프로그래밍 역량 강화에 도움이 되는 다양한 학습 컨텐츠를 확인하세요!

swexpertacademy.com

 

T= int(input())
for t in range(1,T+1):
  now,plus= map(int,input().split())
  result = now+plus
  if result>=24:
    result-=24
  print('#{} {}'.format(t,result))