본문 바로가기
Python/백준

백준 - 7891 Can you add this?

by sophia02 2022. 10. 11.
t = int(input())
for i in range(t):
    a, b = map(int, input().split())
    print(a+b)

'Python > 백준' 카테고리의 다른 글

백준 - 2748 피보나치 수 2  (1) 2022.10.13
백준 - 2506 점수계산  (0) 2022.10.12
백준 - 10886 0 = not cute / 1 = cute  (0) 2022.10.10
백준 - 10826 피보나치 수 4  (0) 2022.10.08
백준 - 2751 수 정렬하기 2  (0) 2022.10.07