# This program will ask for a name and display a welcome message name = input('What is your name? ') print(f'Kia ora {name}') age = int(input(f'{name} how old are you? ')) print(f'{age}?! so old') phone_number = int(input('What is your phone number? ')) print(f'Are you getting a call on {phone_number}?')