#Z12403. 空格分隔输出

空格分隔输出

Description

Read a character, an integer, a single-precision floating-point number, and a double-precision floating-point number, then output them in order with a space separating each. When outputting the floating-point numbers, retain 6 decimal places.

Input Format

The first line is a character;
The second line is an integer;
The third line is a single-precision floating-point number;
The fourth line is a double-precision floating-point number.

Output Format

Output the character, integer, single-precision floating-point number, and double-precision floating-point number, separated by spaces.

a
12
2.3
3.2

a 12 2.300000 3.200000