공부 일지/알고리즘
[기초 코드 작성 요령 II]BOJ 1000번 - A+B
Roble
2023. 12. 30. 15:13

#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int a, b;
cin >> a >> b;
cout << a + b;
}