OJ-Problems-Source/VIJOS/1182_冲啊小笼包.pas

8 lines
82 B
Plaintext

program ex;
var n:longint;
begin //main
read(n);
inc(n); n:=n*n-1;
write(n);
end.