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