#Lutece0402. A Knight's Journey

A Knight's Journey

Migrated from Lutece 402 A Knight's Journey

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Background

title

The knight is getting bored of seeing the same black and white squares again and again and has decided to make a journey around the world. Whenever a knight moves, it is two squares in one direction and one square perpendicular to this. The world of a knight is the chessboard he is living on. Our knight lives on a chessboard that has a smaller area than a regular 8×88 \times 8 board, but it is still rectangular. Can you help this adventurous knight to make travel plans?

Description

Find a path such that the knight visits every square once. The knight can start and end on any square of the board.

Input

The input begins with a positive integer nn in the first line. The following lines contain nn test cases. Each test case consists of a single line with two positive integers pp and qq, such that 1p×q261 \leq p \times q \leq 26. This represents a p×qp \times q chessboard, where pp describes how many different square numbers 1,,p1, \cdots , p exist, qq describes how many different square letters exist. These are the first qq letters of the Latin alphabet: A,\cdots

Output

The output for every scenario begins with a line containing Scenario #i:, where ii is the number of the scenario starting at 11. Then print a single line containing the path with the largest lexicographically order that visits all squares of the chessboard with knight moves followed by an empty line. The path should be given on a single line by concatenating the names of the visited squares. Each square name consists of a capital letter followed by a number.

If no such path exist, you should output impossible on a single line.

Output a single line after each case.

Samples

2
1 1
2 3
Scenario #1:
A1

Scenario #2:
impossible

Resources

TUD Programming Contest 2005, Darmstadt,