Answer to Question #229140 in Python for kaavya

Question #229140

Product of the Given Numbers

Given an integer N, write a program which reads N inputs and prints the product of the given input integers.

Input

The first line of input is a positive integer, N. The next N lines each contain an integer.

Output

The output should be the product of the given input integers.

Explanation

In the given example,

N = 3 and the input integers are 2, 3, and 7.So, the output should be 2 x 3 x 7 = 42.

Sample Input 1

3

2

3

7

Sample Output 1

42

Sample Input 2

4

11

2

4

9

Sample Output 2

792




1
Expert's answer
2021-08-25T05:47:19-0400
n = int(input())
product = 1
for _ in range(n):
    product *= int(input())
print(product)

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS