a==b a!=b a>b a=b a<=b
if age>=18: print("Adult") elif age>=13: print("Teen") else: print("Child")
if age>=18 and is_citizen: print("Eligible")