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