h,s=map(int,input().split()) if h%2 and s%2: print('Possible') elif h%2==0 and s%2==0: print('Possible') else: print('Impossible')