Home [Python] 백준 11021번 : A+B - 7
Post
Cancel

[Python] 백준 11021번 : A+B - 7

Problem

https://www.acmicpc.net/problem/11021

Solution

주어진 횟수를 통해 for문을 구성하였다. print문의 양식이 복잡하기 때문에 문자열 포맷팅을 활용하여 표현하였다.

code

1
2
3
4
5
a = int(input())

for i in range(a):
    b = list(map(int, input().split()))
    print("Case #%d: %d" %(i+1,b[0]+b[1]))
This post is licensed under CC BY 4.0 by the author.

[Python] 백준 1110번 : 더하기 사이클

[Python] 백준 1094번 : 막대기