#include<bits/stdc++.h> #define f(i,s,e) for(int i = s; i <= e; i++) #define ll long long using namespace std; const int N = 1e3+10,inf = 0x3f3f3f3f; int main() { int n,maxx = 0; //設maxx是最大值,初始化要較小 cin >> n; for(int i = 1; i <= n; i++) //迴圈n次 { int x; cin >> x; //每次迴圈都輸入一個數字x if(x > maxx) //如果x比最大值maxx要大 maxx = x; //那麼把x賦值給maxx,就可以更新最大值maxx了 } //迴圈結束後輸出maxx,就可以知道n個數字的最大值是多少了 cout << maxx; return 0; }