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