본문 바로가기

코딩/프로그래머스

[프로그래머스 / 파이썬] 덧셈식 출력하기

728x90
반응형

<내가 푼 풀이>

a, b = map(int, input().strip().split(' '))
print(a,'+',b,'=',a+b)

 

반응형