#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int n,x,y;
cin>>n;
for(int i=0;i<n;i++)
{
int s=0;
cin>>x>>y;
if(x>y) swap(x,y);
for(int j=x+1;j<y;j++)
{
if(j%2!=0)
s+=j;
}
cout<<s<<endl;
}
}