a, b = input().split() c = a + b if c == '01' or '12' or '20': print('Won') elif c == '02' or '10' or '21': print('Lost') else: print('Drew')