a, b = input().split() if a == b: print('Drew') elif a == '0': if b == '1': print('Won') else: print('Lost') elif a == '1': if b == '2': print('Won') else: print('Lost') else: if b == '0': print('Won') else: print('Lost')