d1, d2, d3, s = map(int, input().split()) if (d1 + d2 + d3) < 2 or s == 1: print("SURVIVED") else: print("DEAD")