Advertisement
Josif_tepe

Untitled

Dec 23rd, 2022
968
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.21 KB | None | 0 0
  1. #include <iostream>
  2. #include <vector>
  3. #include <set>
  4. #include <cstring>
  5. using namespace std;
  6.  
  7. int main() {
  8.     int a, b;
  9.     cin >> a >> b;
  10.    
  11.     int c = a & b;
  12.     cout << c << endl;
  13.     return 0;
  14. }
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement