2022-08-11 22:26:26 +08:00
|
|
|
#include <iostream>
|
2022-08-16 08:31:18 +08:00
|
|
|
#include<cstdio>
|
|
|
|
#include<algorithm>
|
|
|
|
#include <cmath>
|
2022-08-11 22:26:26 +08:00
|
|
|
using namespace std;
|
2022-08-18 17:54:44 +08:00
|
|
|
const int N=1e8+5;
|
2022-08-20 08:14:56 +08:00
|
|
|
void initialise(int n)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2022-08-11 22:26:26 +08:00
|
|
|
int main()
|
|
|
|
{
|
2022-08-16 08:31:18 +08:00
|
|
|
int t;
|
2022-08-18 17:54:44 +08:00
|
|
|
int t1=0;
|
|
|
|
int n;
|
2022-08-16 08:31:18 +08:00
|
|
|
scanf("%d",&t);
|
|
|
|
while(t--)
|
|
|
|
{
|
|
|
|
scanf("%d",&n);
|
2022-08-20 08:14:56 +08:00
|
|
|
initialise(n);
|
2022-08-16 08:31:18 +08:00
|
|
|
for(int i=1;i<=n; i++)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
2022-08-18 22:57:16 +08:00
|
|
|
printf("Case %d: %d\n",++t1,n);
|
2022-08-16 08:31:18 +08:00
|
|
|
}
|
|
|
|
return 0;
|
2022-08-11 22:26:26 +08:00
|
|
|
}
|