// Vicfred // https://yukicoder.me/problems/no/1511 // implementation import std.stdio; void main() { int a, b; readf("%s %s\n", &a, &b); writefln("%s", (a|b) - (a&b)); }