# coding:utf-8 i, y = map(int, input().split()) if i == y: print("Drew") elif i == 0: if y == 1: print("Won") else: print("Lost") elif i == 1: if y == 2: print("Won") else: print("Lost") elif i == 2: if y == 0: print("Won") else: print("Lost")