#include <stdio.h>

void printanut(int n) {
	for (;n ; n >>= 1)
	{
		printf("%d", (n & 1));	
	}
}

int main() {
	printanut(100);
	return 0;
}
