Código python:
Ver originalnumero1 = int(input("Escribe un numero:\n"))
numero2 = int(input("Escribe otro numero:\n"))
print (numero1+numero2)
la funcion input retorna un string, tienes que convertirlas a enteros.
Te recomiendo que te leas un buen tutorial como el de:
--Python para todos
o
--Dive into python