Write a program that asks the user for an integer, representing someone's age. If the age is 18 or larger, print out “You can vote”. If the age is between 0 and 17 inclusive, print out “Too young to vote”. If the age is less than 0, print out “You are a time traveler!”. Complete this problem in lab6_p3.py.