j, t = map(int, input().split()) if t - j == 1 or t - j == -2: print("Won") elif t - j == -1 or t - j == 2: print("Lost") elif t == j: print("Drew")