# this program will ask for a name and display a welcome message. name = input('What is your name? ') print(f'Kia ora {name}') phone = input('What is your phone number? ') print(f'Thanks {name}!') age = int(input(f'How old are you {name}?')) print(f'Thanks {name}!') print(f'Thanks {name}, I will call you on {phone}, you are {age} years old')