# File AlmanacForRuby/AlmanacMath.rb, line 118
  def fmod(dividend, divisor)
    surplus = dividend.remainder(divisor)
    return surplus
  end