#include <iostream>

using namespace std;

int main()
{
    int c;
     c = 4 << 1;
     cout << c << endl;


    return 0;
}
