summaryrefslogtreecommitdiff
path: root/pot
blob: b703bca344f8c0a48c69127016be74d45d8377e7 (plain)
1
2
3
4
5
6
#!/usr/bin/env ruby

pow = ARGV[0].to_f
while line = STDIN.gets
  puts line.to_f**pow
end