0% completed
x = 10 if x > 5: print("Greater") else: print("Lesser")
a = 20 if a < 10: print("Less than 10") elif a < 15: print("Less than 15") else: print("15 or more")
.....