Tuesday, May 3, 2011

10469 - To Carry or not to Carry


#include<stdio.h>
int main()
{
    unsigned long a,b;
    while(scanf("%lu%lu",&a,&b)==2)
        printf("%lu\n",a^b);
    return 0;
}

No comments:

Post a Comment

Note: Only a member of this blog may post a comment.