#include <bits/stdc++.h> using namespace std; int main() { int a,i,j; cin>>a; for(i=1;i<=a;i++) { for(j=1;j<=i;j++) { cout<<"#"; } cout<<endl; } }