题干解读:题中要求将输入的两个数的和输出

思路:按要求写出步骤即可

#include <iostream>
using namespace std;

int main() {
    int a, b;
    cin>>a>>b;
    cout<<a+b;
}