D1, D2, D3, S = map(int, input().split()) if D1 + D2 + D3 < 2 or S == 1: print('SURVIVED') else: print('DEAD')