#include<bits/stdc++.h>using namespace std;int main(){ int n,a,mx=0; cin>>n; for(int i=0;i<n;i++){ cin>>a; mx=max(mx,a); } cout<<mx;}