Temperature Conversion

Beginner

Given a temperature t in Centigrade, convert it into Fahrenheit.

Formula for conversion:

Temp (℉) = (9t / 5) + 32

Input Format

The first line indicating the number of test cases T

Next T lines contains the temperature in Centigrade - ti (can be decimal values).

Output Format

T lines each indicating the temperature in fahrenheit.

The fahrenheit values are accurate to upto exactly 2 decimal places.

Examples

Sample Input

2
34.52
12

Expected Output

94.14
53.60

Constraints

0 < T <= 10000
-100 <= ti <= 100

Editorial Link: Editorial