a, b = io.read():match("(%-?%d+) (%-?%d+)") a = a:sub(#a, #a) b = b:sub(#b, #b) a = tonumber(a) b = tonumber(b) if a % 2 == b % 2 then print("Possible") else print("Impossible") end