// editor1
#include<stdio.h>
int main()
{
    int a;
    sacnf("%d",&a);
    for (a=1;a<=5;a++)
    {
        printf("*");
    }
}