#include #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define rrep(i, n) for (int i = (int)(n - 1); i >= 0; i--) #define all(x) (x).begin(), (x).end() #define sz(x) int(x.size()) #define yn(joken) cout<<((joken) ? "Yes" : "No")<; using vl = vector; using vs = vector; using vc = vector; using vd = vector; using vvi = vector>; using vvl = vector>; const int INF = 1e9; const ll LINF = 1e18; template bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } template vector make_vec(size_t a) { return vector(a); } template auto make_vec(size_t a, Ts... ts) { return vector(ts...))>(a, make_vec(ts...)); } template istream& operator>>(istream& is, vector& v) { for (int i = 0; i < int(v.size()); i++) { is >> v[i]; } return is; } template ostream& operator<<(ostream& os, const vector& v) { for (int i = 0; i < int(v.size()); i++) { os << v[i]; if (i < int(v.size()) - 1) os << ' '; } return os; } pair LeastSquaresMethod(vector> &V){ int N=sz(V); double sx=0,sy=0,sxx=0,sxy=0; for(auto [x,y]:V){ sx+=x; sy+=y; sxx+=x*x; sxy+=x*y; } return make_pair((N*sxy-sx*sy)/(N*sxx-sx*sx),(sxx*sy-sx*sxy)/(N*sxx-sx*sx)); } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); int N; cin>>N; vector> V(N); rep(i,N){ double y; cin>>y; V[i]=make_pair(double(i),y); } auto [a,b]=LeastSquaresMethod(V); cout<