#include<iostream> using namespace std; int main(){ int m,n,i,s=0; cin>>m>>n; i=m; while(i<=n){ if(i%2==1)s+=i; i++; } cout<<s; return 0; }