python_if_else_short_2.py:
x
 
a = 200
b = 66
print("A") if a > b else print("=") if a == b else print("B")