Given a set of numbers, can you output the largest possible value that can be made by dividing two different numbers in the set?
Input Specification
The first line will contain a single integer , the number of numbers in the set.
The next line will contain space-separated integers . Each integer is guaranteed to be unique.
Output Specification
Output a single decimal, the largest possible value, rounded to decimal places.
Subtasks
Subtask 1 [20%]
Subtask 2 [80%]
No additional constraints.
Sample Input 1
5
10 2 8 92 4
Sample Output 1
46.0000
Sample Input 2
3
159 900 49
Sample Output 2
18.3673
Comments