信奥赛一本通 2065:【例2.2】整数的和

#include
using namespace std;
int main(){
	int a, b, c;
	cin >> a >> b >> c;
	cout << a + b + c;
	return 0;
}

你可能感兴趣的:(c++)