#this program will ask for a name and display a welcome message #collect iput name = input('what is your name?') print(f'kia ora {name} ') phone_number = input(f'now {name} what is your phone number?') age = int(input('and your age?')) if age <= 1: print('lier, lier pant on fire') elif age <= 18: print('where are your parents?') else: print('not a day over sixteen ;)') #display output print(f'okay {name}, {phone_number} and your {age} years old sweet.') print('10'+'10', 4 + 5) print('this has ended')