728x90
728x90
https://www.acmicpc.net/problem/10950
10950번: A+B - 3
두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.
www.acmicpc.net
T = int(input())
for n in range(T):
A, B = map(int, input().split())
print(A+B)
728x90
728x90
'[Python]BaekJoon.AC' 카테고리의 다른 글
[Python]백준 BaekJoon.AC 2562 : 최댓값(for문, if문) (0) | 2021.12.31 |
---|---|
[Python]백준 BaekJoon.AC 1152 : 단어의 개수(len()) (0) | 2021.12.31 |
[Python]백준 BaekJoon.AC 10952 : A+B-5(while문, if문) (0) | 2021.12.31 |
[Python]백준 BaekJoon.AC 10951 : A+B-4(while문, try-except) (0) | 2021.12.31 |
[Python]백준 BaekJoon.AC 10871 : X보다 작은 수(list, for문) (0) | 2021.12.31 |
[Python]백준 BaekJoon.AC 10818 : 최소, 최대(list, sort) (0) | 2021.12.30 |
[Python]백준 BaekJoon.AC 2884 : 알람시계(if문) (0) | 2021.12.30 |
[Python]백준 BaekJoon.AC 2742 : 기찍N(for문) (0) | 2021.12.30 |