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