# This program will ask for a name and display a welcome message name = input("What is your name? ") print(f"Kia ora {name}") phone = int(input("What is your phone number? ")) print(f"{phone} ok got it") age = int(input("How old are you? ")) print(f"cool Im also {age}")