Skip to content

Instantly share code, notes, and snippets.

@cthbst
Last active May 12, 2016 03:49
Show Gist options
  • Save cthbst/2790a4d0cce3a19c600390e2a78292b1 to your computer and use it in GitHub Desktop.
Save cthbst/2790a4d0cce3a19c600390e2a78292b1 to your computer and use it in GitHub Desktop.
#include<iostream>
using namespace std ;
int main(){
int d ;
while (cin >> d){
int sum=0 ,ai=1 ,delta = 1 ;
for (int i=1 ;i<=50 ;i++ ){
sum += ai ;
ai += delta ;
delta += d ;
}
cout << sum <<endl ;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment