mathexp.rb 74 B

12345
  1. for f in 1..20
  2. puts "Math.exp("+f.to_s+")="+Math.exp(f).to_s
  3. end