f = input() s_f = f.split() m = int(s_f[0]) y = int(s_f[1]) if m == y: print('Drew') elif (m + 1) % 3 == y: print('Won') else: print('Lost')