n, m = map(int, input().split()) if m == 0 and n <= 2: print('Impossible') else: print('Possible')