m, y = map(int, input().split()) if m == 0: if y == 0: print("Drew") elif y == 1: print("Won") else: print("Lost") elif m == 1: if y == 0: print("Lost") elif y == 1: print("Drew") else: print("Won") else: if y == 0: print("Won") elif y == 1: print("Lost") else: print("Drew")