# this program will ask for a name and display a welcome message name = input("what is your name? ") print(f"Kia Ora {name}") phone_number = int(input("what is your phone number? ")) age = int(input("How old are you? ")) print(f" Thanks {name}, I will call you on {phone_number}, you are {age} years old")