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