let n = Int(readLine()!)!; for i in 1...n { var t = ""; for _ in 0...(n-i) { t = t + String(n); } print(t) }