#!/usr/bin/env ruby pow = ARGV[0].to_f while line = STDIN.gets puts line.to_f**pow end