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