include<bits/stdc++.h>
using namespace std;
int main () {
    int n;
    while(scanf("%d",&n)!=EOF){       //多组输入。
        for (int i=0;i<n;i++){       //控制输出
            cout<< "*";
        }
        cout<<endl;//输出回车
    }
    return 0;
}

using namespace std;
int main () {
    int n;
    while(scanf("%d",&n)!=EOF){       //多组输入。
        for (int i=0;i<n;i++){       //控制输出
            cout<< "*";
        }
        cout<<endl;//输出回车
    }
    return 0;
}