Product of the Given Numbers
This Program name is Product of the Given Numbers. Write a Python program to Product of the Given Numbers, it has two test cases
The below link contains Product of the Given Numbers question, explanation and test cases
https://drive.google.com/file/d/183UAEG0VEPhi_5aoLZwcBOK2iUALpI2G/view?usp=sharing
We need exact output when the code was run
N=int(input())
res=1
for i in range(N):
num=int(input())
res*=num
print(res)
Comments
Leave a comment