N, K = map(int, input().split()) if (N,K)==(0,1) or (N,K)==(1,2) or (N,K)==(2,0): print('Won') elif N==K: print('Drew') else: print('Lost')