I'm very new to Python and tried out these codes I got from a tutorials
name = input("Enter your name: ")
age = input("Enter your age: ")
print("Hey, " + name + age)
The codes run in the tutorials, but sublime text only print out "Enter your name: " and nothing else happened after I put in my name. What can I do to fix this?