#!/usr/bin/python # -*- coding: utf-8 -*- me,you = map(int, raw_input().split()) if me == you: print "Drew" elif me + 1 == you or me - you == 2: print "Won" else: print "Lost"