#abc189a. [abc189_a]Slot

[abc189_a]Slot

Problem Statement

You are playing the slots.

The result of a spin is represented by three uppercase English letters C1C_1, C2C_2, and C3C_3. It is considered a win when all of them are the same letter.

Determine whether it is a win.

Constraints

  • CiC_i is an uppercase English letter.

Input

Input is given from Standard Input in the following format:

C1C2C3C_1 C_2 C_3

Output

If the result is a win, print Won; otherwise, print Lost.


Sample Input 1

SSS

Sample Output 1

Won

All of them are the same letter, so it is a win.


Sample Input 2

WVW

Sample Output 2

Lost

It is not a win.