# -*- coding: utf-8 -*- n,k = map(int,input().split()) if n == k: print("Drew") else: if (n - k + 3) % 3 == 1: print("Lost") else: print("Won")