/*************************************************************************
> File Name: C.cpp
> Author:chudongfang
> Mail:1149669942@qq.com
> Created Time: 2016年08月04日 星期四 08时17分23秒
************************************************************************/
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <math.h>
#include <stdlib.h>
#include <algorithm>
#define INF 0x3f3f3f3f
using namespace std;
typedef long long ll;
#define M 200005
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
ll sum[M<<2];
void pushplus(int rt)
{
sum[rt] = sum[rt<<1] + sum [rt<<1|1];
}
void build(int l,int r,int rt)
{
if(l == r)
{
scanf("%lld",&sum[rt]);
return;
}
int m = (l+r)>>1;
build(lson);
build(rson);
pushplus(rt);
}
void update(int L,int R,int l,int r ,int rt)
{
if(l == r)
{
sum[rt] = (ll)sqrt(sum[rt]);
return ;
}
int m = (l+r)>>1;
if(L<=m)
update(L,R,lson);
if(R>m)
update(L,R,rson);
pushplus(rt);
}
ll query(int L,int R,int l,int r ,int rt)
{
if(L<=l && r<=R)
{
return sum[rt];
}
int m = (l + r) >>1;
ll ans = 0;
if(L <= m)
ans += query(L,R,lson);
if(R > m)
ans += query(L,R,rson);
return ans;
}
int main(int argc,char *argv[])
{
int a,b,c,m,n,k=0;
while((scanf("%d",&n) == 1))
{
build(1,n,1);
printf("Case #%d:\n",++k);
scanf("%d",&m);
for(int i=1;i<=m;i++)
{
scanf("%d %d %d",&a,&b,&c);
if(b>c) //保证左小右大
{
int t;
t = b;
b = c;
c = t;
}
if(a == 1)
{
printf("%lld\n",query(b,c,1,n,1));
}
else
{
if(query(b,c,1,n,1) != c-b+1) //进行剪枝,1的平方根始终为1
update(b,c,1,n,1);
}
}
printf("\n");
}
return 0;
}