백준 10950 파이썬
2024. 1. 19. 11:44ㆍ코딩 도구/백준 (단계별)
반응형
백준 10950 : A+B - 3
문제
https://www.acmicpc.net/problem/10950
답안 코드 :
t = int(input())
for _ in range(t):
a, b = map(int, input().split())
print(a + b)
백준 / 문제 / 단계별로 풀어보기 / 3단계 반복문
t = int(input())
for _ in range(t):
a, b = map(int, input().split())
print(a + b)
반응형
'코딩 도구 > 백준 (단계별)' 카테고리의 다른 글
백준 25304 파이썬 (4) | 2024.01.20 |
---|---|
백준 8393 파이썬 (22) | 2024.01.19 |
백준 2739 파이썬 (3) | 2024.01.18 |
백준 2480 파이썬 (124) | 2024.01.18 |
백준 2884 파이썬 (0) | 2024.01.17 |