Copy the app link with current input parameters. They will be displayed in the URL.
If a user visits the app, it will run automatically, using the input parameters from the URL.
first_name = input("Please enter your first name: ")
last_name = input("Please enter your last name: ")
address = input("Please enter your address: ")
print("You are", first_name,last_name,"at",address)