a y b
a)
def suma(a, b):
return a + b
a = int(input('Ingrese un valor'))
b = int(input('Ingrese otro valor'))
print(f'La suma es {suma(a, b)}')
b)
a = int(input('Ingrese un valor'))
b = int(input('Ingrese otro valor'))
print(f'La suma es {a + b}')
Comments
Post a Comment