#include using namespace std; int main(){ int d1, d2, d3, s; cin >> d1 >> d2 >> d3 >> s; if (d1 + d2 + d3 - 2 * s < 2) cout << "SURVIVED" << endl; else cout << "DEAD" << endl; return 0; }