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