aboutsummaryrefslogtreecommitdiff
path: root/Testing/General/test-4.p
diff options
context:
space:
mode:
Diffstat (limited to 'Testing/General/test-4.p')
-rw-r--r--Testing/General/test-4.p8
1 files changed, 8 insertions, 0 deletions
diff --git a/Testing/General/test-4.p b/Testing/General/test-4.p
new file mode 100644
index 0000000..434c548
--- /dev/null
+++ b/Testing/General/test-4.p
@@ -0,0 +1,8 @@
+program main( input, output );
+ var x, y: integer;
+begin
+ read(x);
+ y := (x + 1) * (x - 1);
+ write(y)
+end.
+