๋ฐ์ํ
https://softeer.ai/practice/6295
#include<iostream>
using namespace std;
int main(int argc, char** argv)
{
int t, a, b;
cin >> t;
for(int i=1; i<=t; i++) {
cin >> a >> b;
cout << "Case #" << i << ": " << a+b << "\n";
}
return 0;
}
๋ฐ์ํ