Facebook
From yo, 2 Months ago, written in Python.
Embed
Download Paste or View Raw
Hits: 219
  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))