0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-12-24 03:31:59 +00:00

B2009 计算 (a+b)/c 的值

R52603575
This commit is contained in:
Baoshuo Ren 2021-07-08 11:30:01 +08:00 committed by Baoshuo Ren
parent 2d4edf7cc9
commit d538c532a8
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;
}