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