CF342A Xenia and Divisors
Description
Xenia the mathematician has a sequence consisting of $ n $ ( $ n $ is divisible by 3) positive integers, each of them is at most 7. She wants to split the sequence into groups of three so that for each group of three $ a,b,c $ the following conditions held:
- $ a<b<c $ ;
- $ a $ divides $ b $ , $ b $ divides $ c $ .
Naturally, Xenia wants each element of the sequence to belong to exactly one group of three. Thus, if the required partition exists, then it has  groups of three.
Help Xenia, find the required partition or else say that it doesn't exist.
Input Format
The first line contains integer $ n $ $ (3
Output Format
If the required partition exists, print  groups of three. Print each group as values of the elements it contains. You should print values in increasing order. Separate the groups and integers in groups by whitespaces. If there are multiple solutions, you can print any of them.
If there is no solution, print -1.