#!/usr/bin/env python3 m, k = map(int, input().split()) if m >= k + 1: print("Lose") exit() print('Win' if m % 2 == 0 else 'Draw')