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