#include <iostream>using namespace std;
int main() { //(1+n)(n平方-n+6)/6 int n; while(cin>>n){ cout<<(1+n)*(n*n-n+6)/6<<endl; } return 0;}
這個 計算跟宣告會更小