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