코딩 공부

[Python] Softeer : A+B 본문

현대자동차 Softeer

[Python] Softeer : A+B

Algomalgo 2024. 1. 13. 22:10
728x90


T = int(input())
for tc in range(1, T+1):
    n1, n2 = map(int, input().split())
    print(f"Case #{tc}: {n1+n2}")

이해가 안되는 부분이 있으면 질문 주세요. 감사합니다.

728x90

'현대자동차 Softeer' 카테고리의 다른 글

[Python] Softeer : 성적 평균  (0) 2024.01.14