import Foundation var strArray : [Int] = [] let line1 = readLine()! while let line = readLine() { if let strInt = Int(line), !strArray.contains(strInt) { strArray.append(strInt) } } for i in 0..<strArray.count { for j in 0..<strArray.count-1 { if strArray[j] > strArray[j+1] { let temp = str...