let n = Int(readLine()!)! var l = [1] + [Int](repeating: 3, count: n - 1) print(l.map{String($0)}.joined(separator: " "))