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