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