#include <stdio.h> int main() { int a = 0; while(scanf("%d",&a)!=EOF) { for (int i = 0;i < a;i++) { printf("*"); } printf("\n"); } return 0; }