import sys input = sys.stdin.buffer.readline me, op = map(int, input().split()) if me + 1 % 3 == op: print('Lost') elif me % 3 == op: print('Drew') else: print('Won')