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