Home [Python] 백준 10952번 : A+B - 5
Post
Cancel

[Python] 백준 10952번 : A+B - 5

Problem

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

Solution

while문을 사용해서 계속 입력받음. 문제의 조건인 입력값 0 0 일 때 프로그램을 종료시키는 부분은 if문에 적용함.

code

1
2
3
4
5
6
while True:
    a = list(map(int,input().split()))
    if a[0]==a[1]==0:
        break
    else:
        print(a[0]+a[1])
This post is licensed under CC BY 4.0 by the author.

[Python] 백준 1010번 : 다리 놓기

[Python] 백준 11050번 : 이항 계수 1