# This program will ask for a name and display a welcome messege name = input("What's your name? ") print(f'Kia Ora {name}') phone_number = int(input("What's your phone number? ")) age = int(input("How old are you? ")) print(f"Thank you for your name, I will call you on {phone_number}, you are {age} years old.") print("four" + "5", 4 + 5)