By defining an (empty) namespace std:: before
using it, you avoid getting errors on systems where no part of the
library is in namespace std:
namespace std { }
using namespace std;
