#include<bits/stdc++.h>
using namespace std;
int main(){
int a=1,n=0;
while(a<=100){
n=a+n;
a++;
}
cout<<n;
}
/**************************************************************
Problem: 1002
User: panyuchen
Language: C++
Result: Wrong Answer
****************************************************************/