# -*- coding: utf8

a=input('Escribe el número a--->')
b=input('Escribe el número b--->')
solucion= a+b
print str(a)+"+"+str(b)+"="+str(solucion)
