What will be the output of the following code: main() { int a=10,b=20; a=a^b; b=a^b; a=a^b; cout<
20,10
10,20
1,10
20,2