m, k = map(int, input().split()) gote = m // (k + 1) sente = m - gote - 1 sente_r = sente % 2 gote_r = gote % 2 if sente_r == 0 and gote_r == 0: print("Draw") elif sente_r == 0 and gote_r == 1: print("Lose") elif sente_r == 1 and gote_r == 0: print("Win") else: print("Win")