#include using namespace std; //cin, coutを使う int main(){ int H; int S; cin >> H >> S; if ((abs(H) + abs(S)) % 2 == 0) { cout << "Possible" << endl; } else { cout << "Impossible" << endl; } }