Generation

generate functionTue, 18 Apr 2023

Pregunta al usuario restas y sumas

def suma(a,b): return a+b def resta(a,b): return a-b def operaciones(a,b): print("La suma es: ", suma(a,b)) print("La resta es: ", resta(a,b)) operaciones(3,4)

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