#include #include int main() { int n; scanf("%d", &n); for (int i = n; 1 <= i; i--) { for (int j = i; 0 < j; j--) printf("%d", n); printf("\n"); } }