# 標準入力から一行分を読み出し、文字列として格納する。 first = input() # 読み込んだ文字列をスペースで分割する split_first = first.split() #print(split_first) # それぞれをint型に変換する N = int(split_first[0]) K = int(split_first[1]) if N==K: print("Drew") elif (N==0 and K==1) or (N==1 and K==2)or (N==2 and K==0): print("Won") else: print("Lost")