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