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