def main(N, K): if N == K: return "Drew" if (N+1)%3 == K: return "Won" return "Lost" main(*map(int, input().split(" ")))