UVA Problem 10469 (To Carry or not to Carry) Solution

Problem Solving, UVa

#include<stdio.h>

int main()

{

   unsigned long a,b;

    while(scanf("%lu %lu",&a,&b)==2)

    {

        printf("%lu\n",a^b);

    }

    return 0;

}

 

0 Comments

You may find interest following article