m, y = map(int,input().split()) if m == y : print('Drew') elif m == y - 1 or m == y + 2 : print('Won') else : print('Lost')