Today is your birthday and you invite k friends.
You have n squared cakes and they all have the height 1. The ith cake have an edge length of Ai.
Now you want to cut these cakes in such a way that each friend has the same amount of cake, and each piece of cake must be cut from **at most** 1 cake (i.e. you can't cut a a piece of cake of size a from cake A and a piece of size b from cake B to make a piece of size a+b).
Find the maximum cake size your friends will receive.
### Input
- The first line contains 2 integers n,k.
- The second line contains n integers Ai.
### Output
- Print the maximum size. Your answer will be considered correct if its absolute or relative error does not exceed 10−3. In other words, your answer, x, will be compared to the correct answer, y. If |x−y|<10−3, then your answer will be considered correct.
### Constraints
- 1≤n,Ai≤105.
- 1≤k≤109.
### Example
Input:
2545
Output:
8.000