n=raw_input() L=map(int, n.split()) a, b=L[0], L[1] if a==b: print'Drew' elif (a==0 and b==1) or (a==1 and b==2) or (a==2 and b==0): print 'Won' else: print 'Lost'