[PYTHON] 10951 A+B -4 readlines/try-except

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

     

    10951번: A+B - 4

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

    www.acmicpc.net

    문제 풀이

    • 테스트 케이스 개수를 모르고 입력 받아 합을 구하는 문제이다.

    solution - readlines로 input값 끝까지 받는 방법

    import sys
    
    test_cases = sys.stdin.readlines()
    
    for test_case in test_cases :
      A,B = map(int, test_case.split())
      print(A+B)

    solution - try-except 사용해 예외처리로 푸는 법

    while True:
      try:
        A,B = map(int, input().split())
        print(A+B)
      except EOFError:
        break

    댓글