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