import java.util.*; import java.io.*; class FastReader { BufferedReader br; StringTokenizer st; public FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { while (st == null || !st.hasMoreElements()) { try { st = new StringTokenizer(br.readLine()); } catch (IOException e) { e.printStackTrace(); } } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String nextLine() { String str = ""; try { str = br.readLine(); } catch (IOException e) { e.printStackTrace(); } return str; } } class Solution { FastReader sc; int n; int z=105; public Solution() { sc=new FastReader(); n=sc.nextInt(); int arr[]=new int[z]; Arrays.fill(arr,0); int inp[]=new int[n]; for(int i=0;imax) { max=sum; } } System.out.println(max); } public static void main(String[] args) { new Solution(); } }