I am getting a syntax error for the = sign prior to the 65 integer literal. Can somebody please help me figure out how to fix the syntax error?
age = int(input('Age? '))
if age <= 15 or >= 65:
  print('Discount Applied.')
else:
  print('Discount ineligible.')
 
     
    