源代码
a = 66 b = 66 if b > a: print("b is greater than a") elif a == b: print("a and b are equal")
运行结果