n, k = map(int, input().split()) if n == k: print('Drew') elif k == (n+1)%3: print('Won') else: print('Lost')