aboutsummaryrefslogtreecommitdiff
path: root/Testing/General/test-4.p
blob: 434c54822ef5a03e4fef584cce2f5d3e39925ffb (plain)
1
2
3
4
5
6
7
8
program main( input, output );
  var x, y: integer;
begin
  read(x);
  y := (x + 1) * (x - 1);
  write(y)
end.