a, b = map(int, input().split()) if b - a == 0: print('Draw') elif b - a == 1 or b - a == -2: print('Won') else: print('Lost')