// // main.cpp // template // // Created by 渡辺健太郎 on 2021/04/17. // // #include #include using namespace std; int main() { int a, b; cin >> a >> b; int c = (a | b) + (a & b); cout << c << endl; }