N, M = map(int, input().split()) if (N, M) in [(1, 0), (2, 0)]: print('Impossible') else: print('Possible')