import sequtils, strutils const a = [ "Possible", "Impossible" ] let xs = stdin.readLine.split.map parseInt h = xs[0] s = xs[1] if (h.pred(s) mod 2) == 0: echo a[0] else: echo a[1]