n,k = map(int,input().split()) s = ['Won','Lost','Drew'] if n == k: print(s[2]) if k == 2: k = 3 if k - n == 1: print(s[0]) else: print(s[1])