Generation

generate functionWed, 01 Feb 2023

Add to numbers and return them... Input from users

def add(a, b): return a + b a = int(input("enter a number: ")) b = int(input("enter another number: ")) print(add(a, b))

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