using System; using System.Collections.Generic; using System.IO; using System.Linq; class Solution { static long largestValue(int[] A) { // Return the largest value of any of A's nonempty subarrays. return 41; } static void Main(String[] args) { int n = Convert.ToInt32(Console.ReadLine()); string[] A_temp = Console.ReadLine().Split(' '); int[] A = Array.ConvertAll(A_temp,Int32.Parse); long result = largestValue(A); Console.WriteLine(result); } }