#include <iostream> using n

#include <iostream>
using namespace std;
int a, b, c, d, e, ans;
int main(){
    cin>>a>>b>>c;
    d = a+b;
    e = b+c;
    ans = d+e;
    cout<<ans<<endl;
}

输入: 1 2 5 

输出: _______

答案
第1空:10

题目信息

题号:6578
题型:填空题
难度:普通