Lv0 프로그래머스(Programmers)[Python][파이썬] 덧셈식 출력하기

"""
출처: 프로그래머스 코딩 테스트 연습,
https://school.programmers.co.kr/learn/courses/30/lessons/181947
"""

# 풀이 과정
a, b = map(int, input().strip().split(' '))
print(a,"+",b,"=",a+b)