Skip to content

Instantly share code, notes, and snippets.

@Kanol
Created April 9, 2015 17:42
Show Gist options
  • Save Kanol/f7e5f2d6a1dbb5e6c131 to your computer and use it in GitHub Desktop.
Save Kanol/f7e5f2d6a1dbb5e6c131 to your computer and use it in GitHub Desktop.
program n1;
var a, square, sum:integer;
begin
Readln(a);
while a>0 do begin
square:= a*a;
sum:= sum+square;
a:=a-1;
end;
writeln(sum);
end.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment