#!/usr/koeki/bin/ruby def multi(argv) ans = 1 for i in 0..argv.length-1 ans *= argv[i].to_i end return ans end printf("Åú¤¨: %d\n",multi(ARGV))