#include<iostream>

using namespace std;

int main() {

    int n;
    cout << "Please enter a number between 1 and 10:" << endl;
    cin >> n;


    for (int x = 0; x <= n; ++x) {
        for (int y = 0; y < x; ++y)  { 
            cout << "*" ;
        }
        std::cout << "\n";
    }

    return 0;
}


