#include void main(void){ int a,b; scanf("%d %d",&a,&b); int orNum = a|b; int andNum = a&b; printf("%d",orNum-andNum); }