#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 identified the count of test cases().
There is a even number at the next lines.
The absolute value of is not greater than .
Output
For each number tested, outputs two primes and at one line separated with one space where .
If more than one group can meet it, output the minimum group(of course refers ).
If no primes can satisfy it, output ''.
Samples
3
6
10
20
11 5
13 3
23 3