local a = 10 local b = 20 print("a>b" , (a>b) and true or false ) print("a<b" , (a<b) and true or false ) print("a==b" , (a==b) and true or false )