Answer:
Explanation:
The following code is written in Python, it asks the user for an input saves it to a variable called country, and then prints out the sentence example in the question using the user's input. The output can be seen in the picture attached below
country = input("input country")
print('I would love to go to ' + country)