What is the output of the following code ?
x = 30 y = 40 x ^= y y = x ^ y x ^= y print(x, y)
"^" performs bit wise XOR operation to each bits of x and y
Comment here: