#include #define N 2000 #define ll long long #define inf 0x6fffffff using namespace std; int read(){ int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int sum1[N],sum2[N]; char s[20]; int main() { int T=read(); for(int cas=1;cas<=T;cas++) { int n=read(),m=read(),k=read(); for(int i=0;i<(1<=k)ans++; } printf("Case #%d: %d\n",cas,ans); } //system("pause"); return 0; }