#include <iostream>
using namespace std;
int main()
{
    int a = 2,b=5;
    int c = a &b;
    cout<<c;
    return 0;
}