x,y = map(int,input().split())	
if (x-y)%3==2:
    print("Won")
elif (x-y)%3==1:
    print("Lost")
else:
    print("Drew")