#include <stdio.h>

int main(void){
	int num;
	int cnt=0;
	scanf("%d",&num);
	while(cnt<num){
		printf("*");
		cnt=cnt+1;
	}
	return 0;
}
