Run ID:93979
提交时间:2024-10-19 16:49:08
# include <stdio.h> /* */ int main(){ int a,b,c; scanf("%d%d%d",&a,&b,&c); int res = (a+b)/c; printf("%d",res); return 0; }