#include <stdio.h>

int ast(double n){
	if(n>2){
		printf("*");
		ast(n/2);
	}
}
int main(void) {
	ast(11);
	return 0;
}
