#include <iostream>
using namespace std;
int main(void) {
int x = 5;
int i = 1;
x = x & (x - 1);
cout << x;
return 0;
}