Plenty of space in the palm rest
// Writing a C++ function
void PrintShampooInstructions(int numCycles){
if(numCycles < 1) // if condition stands
cout<< "To few";
else if(numCycles >4)
cour<<"Too Many";
else{
// looping the variable for desired out put
for(int i=0;i<numCycles;i++)
cout<<i<<":"<<" Lather and rinse."<<endl;
}
}