#include<bits/stdc++.h> using namespace std; int main() { int sum = 0; for (int i =1 ; i < 101; i++) { sum = sum + i; } cout << sum; return 0; }