//A SAMPLE PIECE OF CODE TO CONVERT A NUMBER TO A STRING
#include <iostream>
#include <string>
#include <sstream>

template< class type>

inline std::string to_string( const type & value)

{

    std::ostringstream streamOut;

    streamOut << value;

    return streamOut.str();

}

int main(){

  int i=10;
  std::cout<<to_string(i)<<"\n";

  std::string ballstring= to_string(i)+"Balls";
  std::cout <<ballstring<<"\n";
}


