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


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