Commit 6eab2742 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent eb8c3ee4
This diff is collapsed.
cdef int sumupto(int n):
cdef res = 0
while n > 0:
res += n
n -= 1
return res
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment