Kevin Tiller

Generation

code to explanationSat, 22 Apr 2023

Write a program to create a function that takes two arguments as user input, name and age, and print their value.

def add(a, b): return a + b a = int(input('Enter a value:')) b = int(input('Enter b value:')) add(a,b)

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