Help me in solving PYTHCL62 problem

My issue

age = int(input(“enter your age”))

if age >= 18:
print(“Old enough to vote”)
else:
print(“Not old enough to vote”)

My code

# Update the '_' in the code below to solve the problem

age = int(input("enter your age"))

if age >= 18:
    print("Old enough to vote")
else:
    print("Not old enough to vote")

Problem Link: If & Else Statements in Python Programming