def suma(a,b): return a + b x = int(input("Ingresa un numero: ")) y = int(input("Ingresa otro numero: ")) print(suma(x,y))