There seem to be different views on using \'using\' with respect to the std namespace.
Some say use \' using namespace std\', other say don\'t but rathe
using namespace std
There are several ways to fix that.
First: use like what you did.
Second: do namespace S = std;, reducing 2 chars.
namespace S = std;
Third: use static.
static
Fourth: don't use names that std uses.
std