From 11ecd22bb59e04ae3e380efb06921609f9bcf88b Mon Sep 17 00:00:00 2001 From: Kirito <1362050620@qq.com> Date: Wed, 8 Jun 2016 09:32:18 +0800 Subject: [PATCH] Create 1076.pas --- QUSTOJ/1076.pas | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 QUSTOJ/1076.pas diff --git a/QUSTOJ/1076.pas b/QUSTOJ/1076.pas new file mode 100644 index 0000000..bc19a32 --- /dev/null +++ b/QUSTOJ/1076.pas @@ -0,0 +1,7 @@ +program ex; +var n:longint; +begin //main +read(n); +inc(n); n:=n*n-1; +write(n); +end.