새소식

⌨️ Algorithms/백준

[Python] 백준 10952번_A+B - 5

2022. 6. 30. 21:22

  • -

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

 

10952번: A+B - 5

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

 

import sys

while True:
  A, B = map(int, sys.stdin.readline().split())

  if A == 0 and B == 0:
    break;
  else:
    print(A+B)

 

 

Contents

포스팅 주소를 복사했습니다

이 글이 도움이 되었다면 공감 부탁드립니다!