fun main(args : Array) { val a = readLine()!! when { a == "1 0" || a =="2 0" -> "Impossible" else -> "Possible" }.let { println(it) } }