You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
292 B

#include <bits/stdc++.h>
using namespace std;
int main(void) {
int i, j, n;
for (i = 1; i <= 7; i++) {
scanf("%d", &n);
if (n >= 1 && n <= 50)
for (j = 1; j <= n; j++)
printf("*");
printf("\n");
}
return 0;
}