from functools import cache

#################################################   

S = list(input().split())
cnt = 0
for s in S:
    cnt += (s=="AC" or s=="NoOut")
print('Win' if cnt > 5 else 'Lose' if cnt < 5 else 'Draw')