#include #define FOR(i,bg,ed) for(ll i=(bg);i<(ed);i++) #define REP(i,n) FOR(i,0,n) #define MOD 1000000007 //#define int long long using namespace std; typedef long long ll; typedef vector V; typedef vector VV; const int INF = 1e9; signed main() { int N, M; cin >> N >> M; if (M != 0) { cout << "Possible" << endl; } else { cout << "Impossible" << endl; } }