#include <stdio.h>

printanut(n) {
	n!=0 && printanut(n/2);
	printf("%d",n%2);	
}

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