#include <cstdio> int main(){ int N; scanf("%d",&N); for(int i=0;i<N;i++){ for(int k=0;k<N-i;k++)printf("%d",N); printf("\n"); } return 0; }