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