Facebook
From yo, 1 Year ago, written in Python.
Embed
Download Paste or View Raw
Hits: 245
  1. def suma(a,b):
  2.   return a + b
  3.  
  4. x = int(input("Ingresa un numero: "))
  5. y = int(input("Ingresa otro numero: "))
  6.  
  7. print(suma(x,y))