l = list(map(int, input().split())) if l[0] == 0: if l[1] == 0: print ("Drew") if l[1] == 1: print ("Won") if l[1] == 2: print ("Lost") if l[0] == 1: if l[1] == 1: print ("Drew") if l[1] == 2: print ("Won") if l[1] == 0: print ("Lost") if l[0] == 2: if l[1] == 2: print ("Drew") if l[1] == 0: print ("Won") if l[1] == 1: print ("Lost")