Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license()" for more information. >>> # 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")