a,b=map(int, input().split()) if a > b or (a==0 and b==2): print('Lost') elif a < b or (a==2 and b==0): print('Won') else: print('Drew')