#include <bits/stdc++.h> using namespace std; int main(){ int n,g; cin>>n; g=n; for(int i=1;i<=n;i++){ for(int j=1;j<=g;j++) cout<<"*"; g--; cout<<endl; } } /************************************************************** Problem: 1782 User: yangjunwen Language: C++ Result: Accepted Time:9 ms Memory:2072 kb ****************************************************************/