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