# This program will ask for a name and display a welccome 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}')