#abc169c. [abc169_c]Multiplication 3

[abc169_c]Multiplication 3

Problem Statement

Compute AtimesBA \\times B, truncate its fractional part, and print the result as an integer.

Constraints

  • 0leqAleq10150 \\leq A \\leq 10^{15}
  • 0leqB<100 \\leq B < 10
  • AA is an integer.
  • BB is a number with two digits after the decimal point.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print the answer as an integer.


Sample Input 1

198 1.10

Sample Output 1

217

We have 198times1.10=217.8198 \\times 1.10 = 217.8. After truncating the fractional part, we have the answer: 217217.


Sample Input 2

1 0.01

Sample Output 2

0

Sample Input 3

1000000000000000 9.99

Sample Output 3

9990000000000000