s=list(map(str,input().split())) print(s) cnt=s.count('AC')+s.count('NoOut') if cnt>=6: print('Win') elif cnt==5: print('Draw') else: print('Lose')