Fractional Knapsack Problem

You have $N$ items that you want to put them into a knapsack of capacity $W$. Item $i$ ($1 \le i \le N$) has weight $w_i$ and value $v_i$ for the weight.

When you put some items into the knapsack, the following conditions must be satisfied:

Find the maximum total value of items in the knapsack.

Input

$N$ $W$
$v_1$ $w_1$
$v_2$ $w_2$
:
$v_N$ $w_N$

The first line consists of the integers $N$ and $W$. In the following $N$ lines, the value and weight of the $i$-th item are given.

Output

Print the maximum total value of the items in a line. The output must not contain an error greater than $10^{-6}$.

Constraints

Sample Input 1

3 50
60 10
100 20
120 30

Sample Output 1

240

When you put 10 of item $1$, 20 of item $2$ and 20 of item $3$, the total value is maximized.

Sample Input 2

3 50
60 13
100 23
120 33

Sample Output 2

210.90909091

When you put 13 of item $1$, 23 of item $2$ and 14 of item $3$, the total value is maximized. Note some outputs can be a real number.

Sample Input 3

1 100
100000 100000

Sample Output 3

100