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