三数和

weijunyi 2022-04-04 13:01:36 2022-04-04 13:04:03 4 返回题目

#include

using namespace std;

int main() {

int a, b, c, d;

cin >> a >> b >> c;

d = a + b + c;

cout << d << endl;

return 0;

}

{{ vote && vote.total.up }}