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))

Questions about programming?Chat with your personal AI assistant