#include using namespace std; int main(){ int H, S; cin >> H >> S; cout << (abs(H - S) % 2 ? "Impossible" : "Possible"); }