C - Multiplication 3 Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 300

問題文

A \times B の小数点以下を切り捨て、結果を整数として出力してください。

制約

  • 0 \leq A \leq 10^{15}
  • 0 \leq B < 10
  • A は整数
  • B は小数第 2 位まで与えられる

入力

入力は以下の形式で標準入力から与えられる。

A B

出力

答えを整数として出力せよ。


入力例 1

198 1.10

出力例 1

217

198 \times 1.10 = 217.8 なので、小数点以下を切り捨てて答えは 217 となります。


入力例 2

1 0.01

出力例 2

0

入力例 3

1000000000000000 9.99

出力例 3

9990000000000000

Score : 300 points

Problem Statement

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

Constraints

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

Input

Input is given from Standard Input in the following format:

A B

Output

Print the answer as an integer.


Sample Input 1

198 1.10

Sample Output 1

217

We have 198 \times 1.10 = 217.8. After truncating the fractional part, we have the answer: 217.


Sample Input 2

1 0.01

Sample Output 2

0

Sample Input 3

1000000000000000 9.99

Sample Output 3

9990000000000000