eolymp
bolt
Try our new interface for solving problems
Problems

The first is not greater for 2,5

The first is not greater for 2,5

Array of real numbers is given. Find the first element in array which value does not exceed $2.5$. \InputFile In the first line the number of elements in array $n~(0 < n \le 100)$ is given. Next line describes $n$ real numbers. \OutputFile Print in one line the index of the first specified element in array and its value with $2$ decimal digits. In the case of absence the specified element print "\textbf{Not Found}".
Time limit 1 second
Memory limit 128 MiB
Input example #1
5
6 7.5 2.1 2.0 0

Output example #1
3 2.10
Input example #2
5
6 7.5 5.1 7.0 80

Output example #2
Not Found
Source SFE-2010 Variant 7