sqr method

MathFract sqr()

Implementation

MathFract sqr(){
	return MathFract(
		false,
		_nu * _nu,
		_de * _de
		);
}