Write multiple if statements: if car_year is before 1968, print "probably has few safety features." (without quotes). if after 1970, print "probably has seat belts.". if after 1992, print "probably has anti-lock brakes.". if after 2001, print "probably has tire-pressure monitor.". end each phrase with period and newline. remember that print() automatically adds a newline. ex: car_year = 1995 prints: probably has seat belts. probably has anti-lock brakes.