#include<bits/stdc++.h> using namespace std; int main(){ int a=0; int b=0; for(int i=1;i<=100;i++){ a=a+1; b=b+a; } cout<<b; return 0; }