Введите с клавиатуры список чисел. Выведите на экран произведение всех чисел в списке.phyton
Объяснение:
python 3.7.4
-------------------------------------
from operator import mul
from functools import reduce
print(reduce(mul, list(map(int, input().split()))))