#!/usr/bin/env ruby

require_relative "M"

unless ARGV.length == 3
  exit 1
end

M.funct ARGV[0][0], ARGV[1].to_i, ARGV[2].to_f 

exit 0
