def main(): s,h = map(int,input().split()) if((s + h) % 2 == 0): print('Possible') else: print('Impossible') if __name__ == "__main__": main()