index
:
clp.git
main
A small Python compiler with optimizer written in Java
Ubuntu
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
progs
/
a867.py
blob: c8fc7bfe984614dec52789be039898087d320be5 (
plain
)
1
2
3
4
5
def sum_Of_Series(n): sum = 0 for i in range(1,n + 1): sum += i * i*i return sum