How do I multiply an SI unit by a unitless quantity i.e ``` struct sphere_t { SI::metre_t<double> r; SI::square_metre_t<double> surface_area(void) const { return 4.0 * PI * r * r; } }; ```