#include<bits/stdc++.h>
using namespace std;
int main(){
int i=1,h=0;
while(i<=100){
h=h+i;
i++;
}
cout<<h;
}
/**************************************************************
Problem: 1002
User: huanglingkai
Language: C++
Result: Compile Error
****************************************************************/