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