题解 | #两数求和#
两数求和
https://www.nowcoder.com/practice/f1b704af4f654be285552bea53ce6534
#include <iostream> using namespace std; int main() { // write your code here...... int a,b; cin>>a>>b; //判断 if((a+b)>=-1000 && (a+b)<=1000) { cout << (a+b); } return 0; }