Ban đầu chúng ta khai báo a và b theo các kiểu dữ liệu.
B1:Nhập vào a và b : cin>>a>>b;
B2:Đưa ra kết quả của a + b với độ phức tạp O(1):cout << a + b;
Code c++ như sau:
```
#include <bits/stdc++.h>
using namespace std;
int a,b;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin>>a>>b;
cout<<a+b;
return 0;
}
```
# A + B
## Idea
In C++ we can read input values using ```std::cin```. After reading in $A$ and $B$, we can print the sum to solve the problem in $O(1)$.
## Code
```
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int MOD = 1E9 + 7;
const int INF = 1E9; const ll INFLL = 1E18;
int a; int b;
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> a >> b;
cout << a + b << "\n";
}
```