#test program name= input("Whats your name?") print (f"greetings {name}") second_name=input ("What is your surname?") print(f"oh so yur full name is {name} {second_name}") age=int(input(f'so how old are you {name} {second_name}?')) if age <=13: print ('You are not Tyler') if age >=15:print ('You are not Tyler') else:print ('You are Tyler') print(f'I did not know you were {age} years old') birthday=str(input(f'so when is your birthday {name} {second_name}?')) print(f'I knew it would be that year as you are {age} years old') country=input(f'so where are you from?') print(f'oh, so your name is {name} {second_name}, you are {age} years old, you were born on {birthday}, and you come from {country}, interesting.')