# coding: utf-8 N, K = map(int,input().split()) if abs(N - K) > 1: if N > K: print("Won") else: print("Lost") elif abs(N - K) > 0: if N < K: print("Won") else: print("Lost") else: print("Drew")