#include <stdio.h>

int main(void){
int from = 1,to = 100;
printf("%d", to * ( from + to ) / 2 );
return 0;
}