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