https://www.acmicpc.net/problem/11022
문제풀이
- 테스트 케이스는 한 줄로 이루어져 있어 A와 B를 공백을 구분하여 입력받는다.
- 입력받은 A,B를 더해 'Case #테스트 번호: A + B = C'형식으로 출력한다.
solution
import sys
t = int(sys.stdin.readline().strip())
for test_count in range(1,t+1) :
a, b = map(int, sys.stdin.readline().strip().split())
print(f'Case #{test_count}: {a} + {b} = {a+b}')
2023.01.18 - [algorithm/백준] - [PYTHON] 11021 A+B -7
'algorithm > 백준' 카테고리의 다른 글
[PYTHON] 10807 개수 세기 for/count/문자열특정문자개수찾기 (0) | 2023.01.18 |
---|---|
[PYTHON] 10952 A+B -5 (0) | 2023.01.18 |
[PYTHON] 11021 A+B -7 (0) | 2023.01.18 |
[PYTHON] 15552 빠른 A+B (0) | 2023.01.18 |
[PYTHON] 1110 더하기사이클 while (0) | 2023.01.18 |
댓글