074. Infinity Gauntlet
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

You have acquired the Infinity Gauntlet from Thanos from the Marvel Universe. For those who are unfamiliar with the Infinity Gauntlet, it contains immense power with the ability to many things, but most notably, to reduce numbers into half.

Input

The first line will contain integer $$$n$$$ that will denote the amount of test cases that will follow, and each line after the first will contain an integer that is to be divided in half.

Output

Output a series of line-separated floating-point values which divides the inputs in half.

Example
Input
5
10
32
12
35
52
Output
5.0
16.0
6.0
17.5
26.0