#include using namespace std; #define REP(i,n) for(int i=0; i<(int)(n); i++) int main() { ios_base::sync_with_stdio(0); cin.tie(0); int a, b, c, d; cin >> a >> b >> c >> d; if (d >= 10) cout << "Impossible" << endl; else { cout << "Possible" << endl; int score = 0; int combo = 0; REP (i, b) { score += 50 << combo / 100; ++combo; } REP (i, a) { score += 100 << combo / 100; ++combo; } cout << score << endl; } return 0; }