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