let str = readLine()!; let num = Int(str)! for i in 1...num { var tmp = ""; for _ in 0...(5-i) { tmp = tmp + str; } print(tmp) }