Pagini recente » Cod sursa (job #2692964) | Cod sursa (job #914732) | Cod sursa (job #16113) | Cod sursa (job #2495597) | Cod sursa (job #876568)
Cod sursa(job #876568)
program test;
var a:array[1..100] of qword;
x,n,p:qword;
f,g:text;
begin
assign(f,'lgput.in');reset(f);
assign(g,'lgput.out');rewrite(g);
readln(f,n,p);
x:=1;
while p<>1 do
begin
if n mod 2=0 then begin
x:=x*n*n;
p:=p div 2;
end
else begin
x:=x*n*n;
dec(p);
p:=p div 2;
end;
end;
writeln(g,x mod 1999999973);
close(f); close(g);
end.