Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|
9641 | Hyma | 计算(a+b)/c的值 | C++ | Accepted | 0 MS | 248 KB | 139 | 2023-02-15 20:08:12 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b,c; cin>>a>>b>>c; cout<<(a+b)/c<<endl; return 0; }