/******************************************************************************
while 1-100
*******************************************************************************/
#include<iostream>
using namespace std;
int main(){
int b=1,c=0;
while (b<=100){
c=c+b;
b++;
}
cout<<c<<endl;
return 0;
}