N=(int)(input()) M=(int)(input()) ans='Won' if N==M: ans='Drew' elif (N+1)%3==M: ans='Lost' print(ans)