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