fun main { mut Int32 a = 100; mut Int32 b = 50; a ^= b; b ^= a; a ^= b; write(a, b); mut Int32 c = a & b; c |= b; write(c); }