Python 3.9.13 (tags/v3.9.13:6de2ca5, May 17 2022, 16:36:42) [MSC v.1929 64 bit (AMD64)] on win32 Typ# test program V4 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")