# this program will ask for a name and display a welcome message. #collect input 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}!') if age > 13: print("So your a teen") else: print('Your under', 13, 'years old') #display output print(f'Thanks {name}, I will call you on {phone}, you are {age} years old') print(f"The program has ended thanks {name} for your time.")