https://www.acmicpc.net/problem/2558
2558번: A+B - 2
첫째 줄에 A, 둘째 줄에 B가 주어진다. (0 < A, B < 10)
www.acmicpc.net
# 2558 - Python 3
import sys
input = sys.stdin.readline
summ = 0
for i in range(2):
a = int(input())
summ += a
print(summ)'코딩' 카테고리의 다른 글
| [Python] 백준 #2559. 수열 (0) | 2023.03.22 |
|---|---|
| [Python] 백준 #11659. 구간 합 구하기 4 (0) | 2023.03.22 |
| [Python] 백준 #11399. ATM (0) | 2023.03.22 |
| [Python] 백준 #2355. 시그마 (0) | 2023.03.22 |
| [Python] 백준 #11047. 동전 0 (0) | 2023.03.22 |