Sunday, November 10, 2013

LIGHTOJ1000 - Greetings from LightOJ



Get paid to share your links!
1000 - Greetings from LightOJ


Solution:

#include < iostream >

using namespace std;

int main(){
    int a,b,sum,t,cases=0;
    cin>>t;
    while(t--){
        cin>>a>>b;
        cout<< "Case " << ++cases << ": " << a+b << endl;
    }
}


Problem & Solution Download

No comments:

Post a Comment