#Lutece0466. Tiling a Grid With Dominoes

Tiling a Grid With Dominoes

Migrated from Lutece 466 Tiling a Grid With Dominoes

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.

Description

We wish to tile a grid 44 units high and NN units long with rectangles (dominoes) 22 units by one unit (in either orientation). For example, the figure shows the five different ways that a grid 44 units high and 22 units wide may be tiled.

title

Write a program that takes as input the width, WW, of the grid and outputs the number of different ways to tile a 44-by-WW grid.

Input

The first line of input contains a single integer NN, (1N10001\leq N\leq 1000) which is the number of datasets that follow.

Each dataset contains a single decimal integer, the width, WW, of the grid for this problem instance.

Output

For each problem instance, there is one line of output: The problem instance number as a decimal integer (start counting at one), a single space and the number of tilings of a 44-by-WW grid. The values of WW will be chosen so the count will fit in a 3232-bit integer.

Samples

3
2
3
7
1 5
2 11
3 781

Resources

Greater New York 2007