# File lib/rational.rb, line 253
  def % (other)
    value = (self / other).to_i
    return self - other * value
  end