// c++ code to read the recieved calls
cout<< " Enter the calls recieved :";
cin>>callsRecieved;
cout<< " Enter operator on call : ";
cin>>operatorsOnCall;
// calculating the call per operator
calls_per_operator = callsRecieved/operatorsOnCall;
// printing the vaule.
cout<<" Calls recieved per operator are : " << calls_per_operator <<endl;