View Code of Problem 3689

#include<iostream>

using namespace std;

int main(){
    int t,a,b,k=1;
    cin>>t;
    while(t--){
         cin>>a>>b;
         printf("Case #%d:\n%d\n",k++,a-b);
    }
}

Double click to view unformatted code.


Back to problem 3689