Formatted Values
Read five values of different primitive types and print each with the required formatting.
Input
Five lines contain an integer \(X\), a 64-bit integer \(Y\), a character \(C\), and real numbers \(F,D\).
Output
Print the five values on separate lines. Print \(F\) with two digits and \(D\) with nine digits after the decimal point.
Example
Input
614
999999999999990528
G
19.088
2.9648
Output
614
999999999999990528
G
19.09
2.964800000
Comments