#include<iostream> using namespace std; int main() { int a,b,c,h=0,j=0; cin>>a>>b>>c; h=a+b; j=h/c; cout<<j; return 0; }