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