python_if_else_2.py:
x
 
a = 200
b = 66
if b > a:
  print("b is greater than a")
else:
  print("b is not greater than a")