N, V, *A = map(int, open(0).read().split()) if sum(A) <= V: print('Draw') elif max(A) > V: print('Second') else: print('First')