BlueBook - Max

View as PDF

Submit solution

Points: 3
Time limit: 1.0s
Memory limit: 64M

Problem type
BlueBook

Given T real numbers, find and output the largest one to four decimal places.

Input Specification

The first line contains a single integer T (1T1000000). Each of the following T lines contains one real number xi (106xi106).

Output Specification

A single line: the largest of the T real numbers.

Sample Input

Copy
3
1.5
3
2.2

Sample Output

Copy
3.0000

Comments

There are no comments at the moment.