#include <iostream>
#include <bitset>
using namespace std;

int main()
{
	bitset<64> foo(86);
	cout << foo;
}