s = input().split() n = int(s[0]) k = int(s[1]) a = n-k if a == 0: print('Drew') elif a == 2 or a == -1: print('Won') else: print('Lost')