#B2023. Formatting Mixed Data Types

    ID: 11105 Type: Default 1000ms 256MiB

Formatting Mixed Data Types

Formatting Mixed Data Types

Given a single line input containing a character, an integer, a single precision float, and a double precision float, output these four values separated by a space. The floating point numbers must be printed with (6) decimal places.

inputFormat

A single line containing a character, an integer, a float and a double separated by spaces.

outputFormat

Print the four values in the same order separated by a space. The floating point numbers must be formatted with exactly (6) digits after the decimal point.

sample

A 10 1.23 4.56
A 10 1.230000 4.560000