res_table = [["Drew", "Won", "Lost"], ["Lost", "Drew", "Won"], ["Won", "Lost", "Drew"]] N, K = map(int, raw_input().split()) print res_table[N][K]