双语题解
2024-06-15 06:42:45
发布于:上海
3阅读
0回复
0点赞
Python:
s=[int(i) for i in input().split()]
print(sum(s))
C++:
#include<iostream>
using namespace std;
int main(){
    int a,b;
    cin >> a >> b;
    cout << (long long) a + b <<  endl;
    return 0;
}
这里空空如也







有帮助,赞一个