Computer Science, asked by karan1622, 9 months ago

write a python code to find the product of even number upto given value and displays the output​

Answers

Answered by Arunkumar1705
1

Answer:

a=int(input(enter the value))

sum=0

for i in range(2*a):

sum+=i

print(sum)

Similar questions