输入一个n,大于等于o 小于等于100 计算一到n的和
用Pascal编程
var
a,n,i:integer;
begin
readln(n);
a:=0;
for i:=1 to n do
a:=a+n;
writeln(n);
end.