# File lib/Fraccion.rb, line 17
   def initialize(n, d)
      @n = n / mcd(n,d)
      @d = d / mcd(n,d)
   end