#ifndef NOSTDCPP
#include <bits/stdc++.h>
#else
#include <algorithm>
#include <bitset>
#include <cassert>
#include <climits>
#include <complex>
#include <cstring>
#include <cstdio>
#include <deque>
#include <exception>
#include <functional>
#include <iomanip>
#include <iostream>
#include <istream>
#include <iterator>
#include <list>
#include <map>
#include <ostream>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <typeinfo>
#include <utility>
#include <valarray>
#include <vector>
#endif
# ifdef Linux_System
# define getchar getchar_unlocked
# define putchar putchar_unlocked
# endif
# define RESET(_) memset(_, 0, sizeof(_))
# define RESET_(_, val) memset(_, val, sizeof(_))
# define fi first
# define se second
# define pb push_back
# define midf(x, y) ((x + y) >> 1)
# define DXA(_) ((_ << 1))
# define DXB(_) ((_ << 1) | 1)
# define next __Chtholly__
# define x1 __Mercury__
# define y1 __bbtl04__
# define index __ikooo__
using namespace std;
typedef long long ll;
typedef vector <int> vi;
typedef set <int> si;
typedef pair <int, int> pii;
typedef long double ld;
const int MOD = 1e9 + 7;
const int maxn = 300009;
const int maxm = 300009;
const double eps = 1e-6;
ll myrand(ll mod){return ((ll)rand() << 32 ^ (ll)rand() << 16 ^ rand()) % mod;}
template <class T>
inline bool scan_d(T & ret)
{
char c;
int sgn;
if(c = getchar(), c == EOF)return false;
while(c != '-' && (c < '0' || c > '9'))c = getchar();
sgn = (c == '-') ? -1 : 1;
ret = (c == '-') ? 0 : (c - '0');
while(c = getchar(), c >= '0' && c <= '9')
ret = ret * 10 + (c - '0');
ret *= sgn;
return true;
}
#ifdef Cpp11
template <class T, class ... Args>
inline bool scan_d(T & ret, Args & ... args)
{
scan_d(ret);
scan_d(args...);
}
#define cin.tie(0); cin.tie(nullptr);
#define cout.tie(0); cout.tie(nullptr);
#endif
inline bool scan_ch(char &ch)
{
if(ch = getchar(), ch == EOF)return false;
while(ch == ' ' || ch == '\n')ch = getchar();
return true;
}
inline void out_number(ll x)
{
if(x < 0)
{
putchar('-');
out_number(- x);
return ;
}
if(x > 9)out_number(x / 10);
putchar(x % 10 + '0');
}
ll gcd(ll a, ll b)
{
return b == 0 ? a : gcd(b, a % b);
}
ll pow_mod(ll a, ll b, ll c)
{
if(c == 1) return 0;
ll ans = 1;
while(b)
{
if(b & 1) ans = a * ans % c;
b >>= 1;
a = a * a % c;
}
return ans;
}
double BBP(int n, ll x)
{
double ans = 0.0;
for(int i = 0; i <= n; ++ i) ans += (pow_mod(16, n - i, x + 8 * i) * 1.0 / (x + 8 * i));
for(int i = n + 1; i <= n + 1 + 1000; ++ i) ans += powf(16, n - i) / (x + 8 * i);
return ans;
}
int BIT(int x)
{
if(x < 10) return '0' + x;
return x - 10 + 'A';
}
int main()
{
int T, n;
double ans;
scanf("%d", &T);
for(int Casen = 1; Casen <= T; ++ Casen)
{
ans = 0.0;
scanf("%d", &n);
-- n;
ans += 4.0 * BBP(n, 1);
ans += -2.0 * BBP(n, 4);
ans += -1.0 * BBP(n, 5);
ans += -1.0 * BBP(n, 6);
ans = ans - (int) ans;
if(ans < 0.0) ans += 1.0;
ans = ans * 16.0;
printf("Case #%d: %d %c\n", Casen, ++ n, BIT(int(ans)));
}
return 0;
}