Create 1076.pas

pull/21/head^2
Kirigaya Kazuto 2016-06-08 09:32:18 +08:00
parent 305b08a8ae
commit 11ecd22bb5
1 changed files with 7 additions and 0 deletions

7
QUSTOJ/1076.pas Normal file
View File

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