1184:a × b

时间限制: 2 S | 内存限制: 65536 KB
Accept: 0 | Submit: 0
[提交] [状态] [讨论版]
描述

Calculate a × b.

输入

The input will consist of a series of pairs of floating point numbers a and b,separated by a space, one pair of floating point numbers per line.

输出

For each pair of input floating point numbers a and b you should output the product of a and b in one line,and with one line of output for each line in input.

Output should be rounded to 3 digits after decimal point.

样例输入

1.1 1.1

1 0

1.234 5.678

样例输出

1.210

0.000

7.007

HINT

printf("%.3f", a*b);

来源
TKK-ICPC Warm-up Match