题解
2024-11-07 22:41:02
发布于:浙江
2阅读
0回复
0点赞
#include <iostream>
using namespace std;
int main() {
    // Declare two variables to store the input integers
    unsigned int a, b;
    // Take input of two integers
    cin >> a >> b;
    // Output the sum of a and b
    cout << a + b << endl;
    return 0;
}
这里空空如也

有帮助,赞一个