Generation

generate functionMon, 17 Apr 2023

sumar tres numeros ingresados por pantalla

def suma_tres_numeros(): a = input("Ingrese un numero") a = int(a) b = input("Ingrese un segundo numero") b = int(b) c = input("Ingrese un tercer numero") c = int(c) print(a+b+c) suma_tres_numeros()

Want to kickstart your project?Use the new AI Studio to create your code