0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2025-01-23 20:51:59 +00:00

B2008 计算 (a+b)×c 的值

R52602972
This commit is contained in:
Baoshuo Ren 2021-07-08 11:27:48 +08:00 committed by Baoshuo Ren
parent f87ec82e84
commit 2d4edf7cc9
Signed by: baoshuo
GPG Key ID: 70F90A673FB1AB68

View File

@ -0,0 +1,10 @@
#include <bits/stdc++.h>
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
cout << (a + b) * c << endl;
return 0;
}