8 lines
87 B
Python
8 lines
87 B
Python
|
|
sum1 = 0
|
|
for i in range(1,5): # 1,2,3,4,5
|
|
sum1 = sum1+i
|
|
|
|
print (sum1)
|
|
|
|
|