๐Ÿ“ฆ Chango/๐Ÿš™ Softeer

[Softeer][๋ฐ๋ธŒํฌ๋ฃจ 2์ผ์ฐจ] ์†Œํ”„ํ‹ฐ์–ด Lv.1 A+B ํ’€์ด

์„ ๋‹ฌ 2024. 1. 26. 04:46
๋ฐ˜์‘ํ˜•

https://softeer.ai/practice/6295

 

Softeer - ํ˜„๋Œ€์ž๋™์ฐจ๊ทธ๋ฃน SW์ธ์žฌํ™•๋ณดํ”Œ๋žซํผ

 

softeer.ai

 

#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;
}
๋ฐ˜์‘ํ˜•