水
#include <stdio.h>
#include <stdlib.h>
#include<math.h>
#include<iostream>
#define LL long long
using namespace std; int main()
{
int t;
int a,b;
int cas;
LL sum;
while(~scanf("%d",&t))
{
for(int i=;i<=t;i++)
{
sum=;
scanf("%d%d",&a,&b);
for(int j=a;j<=b;j++)
{
sum+=pow(j,);
}
printf("Case #%d: %lld\n",i,sum);
}
}
return ;
}