#include <bits/stdc++.h> using namespace std; int main() { int a=0; for(int b=1,i=100;b<=i;b++){ if(b%2==1){ a+=b; } } cout<<a<<endl; }