a,b = map(int,input().split()) x = a-b if x == -2 or x == 1: print("Lost") elif x == -1 or x == 2: print("Won") else: print("Drew")