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

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