a,b=input().split() a = int(a) b = int(b) if a - b == -1 | a - b == -2: print('Lost') elif a - b == 1 | a -b == 2: print('Won') else: print('Drew')