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