# File lib/Fraccion.rb, line 40
   def + (other)
        Fraccion.new(@n* other.d + other.n*@d, @d * other.d)
   end