var
c,a,b: real;
begin
writeln('Число:');
readln(a);
writeln('Степень:');
readln(b);
c:=power(a,b);
writeln('Ответ:',' ',c);
readln
end.