input()

When the input() function is called, the interpreter waits for the user to input something.

country = input("Which country are you from? ")
print(country + " is a great country!")

With input:

Which country are you from? England
England is a great country!

Also…

print("I've been to " + country + " many times!")
I've been to England many times!