import math x,y = list(map(int, input().split())) if x == y: print('Drew') elif x < y and y != 2: print('Won') elif x == 2 and y == 0: print('Won') elif x == 2 and y == 1: print('Lost') else: print('Lost')