fork download
  1. #include<stdio.h>
  2. int main()
  3. {
  4. unsigned long long int a,b,c;
  5. while(scanf("%llu %llu",&a,&b) !=EOF)
  6. {
  7. c = a^b;
  8. printf("%llu\n",c);
  9. }
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 4512KB
stdin
Standard input is empty
stdout
Standard output is empty