๋ฌธ์
์ฝ๋
#include <iostream>
using namespace std;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
int T;
cin >> T;
while (T-- > 0) {
int A, B;
cin >> A >> B;
cout << A + B << "\n";
}
}
'Algorithm ๐ง๐ปโ๐ป > ๋ฐฑ์ค(BOJ)' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค,c++] 15650๋ฒ - N๊ณผ M (2) (0) | 2021.11.17 |
---|---|
[๋ฐฑ์ค,c++] 15649๋ฒ - N๊ณผ M(1) (0) | 2021.11.17 |
[๋ฐฑ์ค,c++] 15643๋ฒ - Yee (0) | 2021.11.17 |
[๋ฐฑ์ค,c++] 15482๋ฒ - ํ๊ธ LCS (0) | 2021.11.17 |
[๋ฐฑ์ค,c++] 1547๋ฒ - ๊ณต (0) | 2021.11.17 |
[๋ฐฑ์ค,c++] 1541๋ฒ - ์์ด๋ฒ๋ฆฐ ๊ดํธ (0) | 2021.11.17 |
๋๊ธ