Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)] on win32 Type "help", "copyright", "credits" or "license()" for more information. >>> name = input("what is your name?") second_name = input("what is your surname?") age = float(input("how old are you? ")) print(f"Greetings {name} {second_name} you are {age} years old") if age < 12: print("hi jeff") else: print("hi jeffica") print ("program has ended")