write a python code to find the product of even number upto given value and displays the output
Answers
Answered by
1
Answer:
a=int(input(enter the value))
sum=0
for i in range(2*a):
sum+=i
print(sum)
Similar questions