#include <iostream> using namespace std; int main(){ int i,x=0; for(i=1;i<=100;i++){ x=x+i; } cout<<x<<endl; }