#include using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif using ll = long long; #define rep(i, n) for (int i = 0; i < (n); ++i) int main() { string a, b; cin >> a >> b; bitset<32> bs_a(a), bs_b(b); cout << (bs_a ^ bs_b).to_ullong() << endl; return 0; }