Read n temperatures in Celsius. Print each converted to Fahrenheit (rounded to 1 decimal).
Write a complete program: read the input with input() and print the result with print().
input()
print()
Input
3 0 100 37
Output
32.0 212.0 98.6