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