import java.io.*;
import java.util.*;
import java.math.*;
public class Main {
       public static void main(String args[])
       {
    	   Scanner cin=new Scanner(System.in);
    	   int t;
    	   BigInteger a,b,c;
    	   t=cin.nextInt();
    	   for(int i=1;i<=t;i++)
    	   {
    		   a=cin.nextBigInteger();
    		   b=cin.nextBigInteger();
    		   c=a.add(b);
    		   System.out.println("Case " + i +":");
    		   System.out.println(a + " + " + b + " = " + c);
    		   if(i!=t)
    		   {
    			   System.out.println();
    		   }
    	   }
       }
}

  

相关文章:

  • 2022-02-18
  • 2021-09-06
  • 2021-06-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-07
  • 2021-11-14
  • 2021-06-02
  • 2021-12-28
  • 2022-01-20
相关资源
相似解决方案