S=input().split() count=0 for y in S: if y=='AC': count+=1 if count<=4: print('Lose') elif count==5: print('Draw') else: print('Win')