# -*- coding: utf-8 -*- N, K = map(int, raw_input().split()) if N == K: print "Drew" elif N - K == 1: print "Lost" else: print "Won"