#C4698. Sticker Collection Checker

    ID: 48264 Type: Default 1000ms 256MiB

Sticker Collection Checker

Sticker Collection Checker

You are given a collection of animal stickers provided as a space-separated string. The task is to determine if the collection contains at least one of each of the five unique stickers: tiger, elephant, rabbit, lion, and giraffe.

Formally, let $$S = { \text{tiger, elephant, rabbit, lion, giraffe} }$$. The collection is considered complete if every sticker in $$S$$ appears at least once.

inputFormat

A single line of text containing the names of animal stickers separated by spaces.

outputFormat

Output a single word: "WIN" if the input contains all five distinct stickers, and "LOSE" otherwise.## sample

tiger elephant rabbit lion giraffe
WIN

</p>