Adds the first and the second and returns that sum.
template <class T> struct plus : binary_function<T,T,T> { T operator()(const T& x, const T& y) const; };
Returns x plus y.