Algorithm/Baekjoon

단계별로 풀기 4단계 while문 - A+B-4(10951 문제) Python 답안

Bonita SY 2019. 10. 7. 20:39
728x90
반응형

답안)

from sys import stdin
lines = stdin.readlines()
for line in lines:
                a, b = line.split(" ")
                print int(a) + int(b)


오,, EOF는 이렇게 해결하는 것이군요..


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

 

10951번: A+B - 4

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

www.acmicpc.net

 

728x90
반응형