N, K = map(int, input().split()) x = N - K if x == 0: print('Drew') elif x in (-1, 2): print('Won') else: print('Lost')