Problem1389--printf格式化输出(2)

1389: printf格式化输出(2)

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 128 MiB

Description

读入一个整数a和两个小数b、c,输出三个数字。要求:输入的小数采用四舍五入保留小数点后2位有效数字。输出格式为:a=整数值   b=小数值   c=小数值 (彼此间隔一个空格)。

Input

一行三个数字,分别表示1个整数和2个小数。

Output

一行,表示输出结果。

Sample Input Copy

1 2.678 5.1234

Sample Output Copy

a=1 b=2.68 c=5.12

Source/Category