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