Company: Deloitte USI_5sep
Difficulty: medium
Consider the code given below: ``` N = 1000000 result = 0 FOR i = 1 TO N result = result XOR i END FOR FOR i = 1 TO N IF i != 543210 result = result XOR i END IF END FOR PRINT result ``` What will be printed?