#include #include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); string h, s; cin >> h >> s; cout << (((h.back() - '0') - (s.back() - '0')) % 2 == 0?"Possible": "Impossible") << endl; return 0; }