(a, b) = map(int, raw_input().split()) if a == b: print "Drew" elif (a + 1) % 3 == b: print "Won" else: print "Lost"