A magician asks a spectator to think of three digits A1, A2, and A3. These three digits composed tofive numbers: A1A3A2, A2A1A3, A2A3A1, A3A1A2, and A3A2A1. Then, the magician asks the spectatorto add together five numbers. When the spectator tells the magician what the sum X of these fivenumbers is, the magician can then correctly guess the A1, A2, and A3 digits. Please write a programto help the magician to guess the three digits A1, A2, and A3, correctly.InputFirst line has a single integer n denoting number of test cases to follow. For each test case, there isone integer X denoting the sum of five numbers.OutputFor each test case, output A1, A2, and A3 with a blank space between two digits. Each test case isguaranteed to have one and only one solution.