N=list(map(int,input().split())) if N[0] == N[1]: print('Drew') elif (N[0]==0 and N[1]==1) or (N[0]==1 and N[1]==2) or (N[0]==2 and N[1]==0): print('Won') else: print('Lost')