A+B problem
2025-11-23 14:24:35
发布于:山东
0阅读
0回复
0点赞
c++
#include<istream>
#include<ostream>
using std::cin;
using std::cout;
using std::ios;
int a, b;
int main() {
ios::sync_with_stdio(0);
cin.tie(0), cout.tie(0);
cin >> a >> b;
cout << a + b;
return 0;
}
python
a, b = map(int, input().split())
c = a + b
print(c)
这里空空如也

有帮助,赞一个