#/bin/tcsh

@ basis = $argv[2]
@ count = 0

while ( $count < $argv[1] ) 
	@ basis *= $basis
	@ count++
end

echo $basis
