N,K = map(int,raw_input().split(" ")) rem = (K - N) % 3 if rem == 1: print "Won" elif rem == 0: print "Drew" else: print "Lost"