RosettaCodeData/Task/Exponentiation-order/11l/exponentiation-order.11l
2023-07-01 13:44:08 -04:00

3 lines
55 B
Text

print(5 ^ 3 ^ 2)
print((5 ^ 3) ^ 2)
print(5 ^ (3 ^ 2))