let n = Int(readLine()!) var s = "" for i in 1...n!{ s += String(repeating: "\(10-i)", count: n!) } print(s)