Write a Python program to create a variable city with the value "New York". Print a sentence that says: "Welcome to New York!".
Python code:
city = "New York"
print("Welcome to",city,"!")