5 lines
72 B
Python
5 lines
72 B
Python
b=8;m=0
|
|
for i in range(1,b+1):
|
|
if i%2==0:
|
|
m=m+i/2
|
|
print(m+b) |