#This program will ask for a name and display a welcome message. name = input('What is your name? ') print(f'Kia ora {name}') phone_number = input(f'{name} what is your phone number? ') print(f'{phone_number} got it') age = int(input(f'And how old are you {name}? ')) if age > 35: print(f'Wow {name} you are old! {age}!') print(f'Okay, {name}, {phone_number}, {age}. Thanks for your help') print('four' + '5', 4 + 5)