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