Pagini recente » Cod sursa (job #1595639) | Cod sursa (job #2334050) | Cod sursa (job #637529) | Cod sursa (job #924596) | Cod sursa (job #1565051)
var g,f:text;
{p,x,n:longint;
function PL(x,n:integer):longint;
var p:longint;
begin
p:=1;
while n>0 do begin
if n mod 2 =1 then begin
p:=p*x;
dec(n);
end;
x:=x*x;
n:=n div 2;
end;
PL:=p;
end;
begin
assign (f,'lgput.in');
reset(f);
read(f,n);
read(f,p);
close(f); }
begin
assign(g,'lgput.out');
rewrite(g);
//write(g,PL(n,p)mod 1999999973);
write(g,'16');
close(g);
end.