思路:
A+B, 没有什么特别的.
1 #include <iostream> 2 using namespace std; 3 4 int main() 5 { 6 ios::sync_with_stdio(false); 7 cin.tie(0); 8 9 int a, b; 10 cin >> a >> b; 11 cout << a + b << endl; 12 13 return 0; 14 }
原文:https://www.cnblogs.com/AntonLiu/p/12246738.html