Run ID:97835

提交时间:2024-11-16 16:42:15

#include <stdio.h> int main() { int a, b, c, s; scanf("%d%d%d",&a,&b,&c); s=(a+b)/c; printf("%d\n",s); return 0; }