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. #test program v4 name = input("What is your name? ") second_name = input("What is your second name? ") age = float(input("How old are you? ")) print(f"greetings {name} {second_name} you are {age} years old")