let splitInput = readLine()!.split(separator: " ") let h = Int(splitInput[0])! let s = Int(splitInput[1])! if (h - s) % 2 == 0 { print("Possible") } else { print("Impossible") }