[1000]백준 : A+B (python)

지환·2023년 4월 28일
0

python

목록 보기
2/12

출처 : https://www.acmicpc.net/problem/1000

문제

코드

a,b = input().split()

x = int(a)
y = int(b)

print(x+y)

결과

-> 5-1 완료

profile
아는만큼보인다.

0개의 댓글