// If statement >>> a = 20 >>> if a > 10: print("20 is greater than 10") else: print("20 is less than 10") Output 20 is greater than 10