#pragma GCC optimize("O3") #include using namespace std; typedef long long ll; ll calc(ll d) { return (ll)((-1 + sqrt(1 + 4*d)) / 2.0); } int main(void) { cin.tie(NULL); ios::sync_with_stdio(false); for(int i=1e8;i<1e8+1e5;i++) { cout << 1LL*i*i + i -1 << '\n'; } return 0; }