N = list(map(int, input().split())) ans='Won' if N[0]==N[1]: ans='Drew' elif (N[0]+1)%3==N[1]: ans='Lost' print(ans)