Advertisement
atm-irbis

Summ

May 27th, 2012
2,678
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Icon 0.15 KB | None | 0 0
  1. procedure main()
  2. local a,b
  3. a:=read()
  4. b:=sum(a)
  5. write(b)
  6. end
  7.  
  8. procedure sum(n)
  9. local s,i
  10. s:=0
  11. every i:=1 to n do {
  12.  s:=s+i
  13. }
  14. return s
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement