Problem2685--打擂台-奇数中的最大值

2685: 打擂台-奇数中的最大值

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 414  Solved: 230
[Status] [Submit] [Creator:]

Description

输入 n 个整数。

求这 n 个整数中最大的那个奇数。  

Input

第一行,一个整数 n(1 ≤ n ≤ 1000)。

第二行,n 个整数。每个整数均为不超过 1000 的正整数。  

数据保证这些数中至少有一个奇数。  

Output

输出一个整数,表示这些数中最大的那个奇数。  

Sample Input Copy

5
2 6 3 5 8

Sample Output Copy

5

Source/Category

入门