eolymp
bolt
Try our new interface for solving problems
Problems

Tower Game Easy

Tower Game Easy

Time limit 1 second
Memory limit 64 MiB

Daniel is building towers out of blocks. He has many black and white blocks. He has built two towers out of those. Now he suggests Max playing the following game. Black block will belong to Daniel and white blocks will be Max's blocks. During his turn the player can take any of his blocks from any tower and remove it and all the blocks above it. As usual the player who can't make the move loses. Daniels make the first move. Determine who will win if both players play optimally.

Input data

The input starts with number t - the amount of test cases. Each test case consists of two strings. Each string is formed of 'B' and 'W' characters, where 'B' means bleck block and 'W' - white block. Each string describes one tower from bottom to top.

Constraints: 1t 20, String consist of no less than 1 character and no more than 200 characters.

Output data

For each test case print 'Win' if Daniel wins and 'Loss' if Max wins given both players play optimally.

Examples

Input example #1
2
WBWBWBWBWBWBWB
BWBWBWBWBWBWBW
Output example #1
Loss