Given a temperature t in Centigrade, convert it into Fahrenheit.
Formula for conversion:
Temp (℉) = (9t / 5) + 32
The first line indicating the number of test cases T
Next T lines contains the temperature in Centigrade - ti (can be decimal values).
T lines each indicating the temperature in fahrenheit.
The fahrenheit values are accurate to upto exactly 2 decimal places.
2
34.52
12
94.14
53.60
0 < T <= 10000
-100 <= ti <= 100