版权声明:转载请注明出处。 https://blog.csdn.net/u014427196/article/details/40583319

#include <stdio.h>
#include <iostream>
#include <string.h>
#include <algorithm>
#include <math.h>


using namespace std;


int main()
{
    int t;
    scanf("%d",&t);
    int s=1;
    while (t--)
    {
        int a ,b;
        scanf ("%d%d",&a,&b);
        printf("Case %d: %d\n",s++,a+b);
    }
    return 0;
}