#include int main(){ int sum=0,i=1; do { if(i%2==1) sum+=i; }while(i++<100); printf("%d\n",sum); return 0;}