Write a program to create a function that takes two arguments as user input, name and age, and print their value.
def input_data(name, age): print("My name is " + name + " and I am " + str(age) + " years old.") name = input("What is your name? ") age = input("How old are you? ") input_data(name, age)