print("Simple input and output") name = input("What is your name? ") age = input("How old are you? ") # string formatting with f-strings # https://realpython.com/python-f-strings/ print(f"Hello {name}, you are {age} years old")