#SDNU1500. Problem_I

Problem_I

Description

Spring is coming, T_T.
All you know Goldbach conjecture.That is to say, Every even integer greater than 2 can be expressed as the sum of two primes. Today, skywind present a new conjecture: every even integer can be expressed as the difference of two primes.
To validate this conjecture, you are asked to write a program.

Format

Input

The first line of input is a number nn identified the count of test cases(n<104n<10^4).
There is a even number xx at the next nn lines.
The absolute value of xx is not greater than 10610^6.

Output

For each number xx tested, outputs two primes aa and bb at one line separated with one space where ab=xa-b=x.
If more than one group can meet it, output the minimum group(of course refers bb).
If no primes can satisfy it, output 'FAILFAIL'.

Samples

3
6
10
20
11 5
13 3
23 3