#abc205a. [abc205_a]kcal

[abc205_a]kcal

Problem Statement

We have a drink that has AA kilocalories of energy per 100100 milliliters. How many kilocalories of energy does BB milliliters of this drink have?

Constraints

  • 0leqA,Bleq10000 \\leq A, B \\leq 1000
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

AA BB

Output

Print a number representing the answer.

Your output is considered correct when its absolute or relative error from our answer is at most 10610^{-6}.


Sample Input 1

45 200

Sample Output 1

90

We have a drink that has 4545 kilocalories of energy per 100100 milliliters. 200200 milliliters of this drink has 9090 kilocalories of energy.


Sample Input 2

37 450

Sample Output 2

166.5

The answer may not be an integer.


Sample Input 3

0 1000

Sample Output 3

0

Sample Input 4

50 0

Sample Output 4

0