PROBLEM 91
Hard

Product of Four Digits

Programming Basics · Python

</>
STATUS Not solved

TASK

Problem

#91

Given a positive four-digit integer, print the product of its digits.

EXAMPLE

Example

Input
1234
Output
24

LIMITS

Constraints

1000 ≤ n ≤ 9999
📖
LEARN Theory for this problem
+

`input()` reads data entered by the user. The result of `input()` is initially a string. `int()` converts a numeric string into an integer. The `*` operator multiplies numbers. The `//` operator performs integer division and keeps the whole-number part. The `%` operator returns the remainder after division. `print()` displays the program result. Print only what the problem statement requires.

**Connection to this task.** The `//` and `%` operators complement each other: the first gives the integer quotient and the second gives the remainder. This is useful when splitting a number into groups or digits. The expression `a * b * c * d` shows how this idea is applied to the task data.

💡
NEED HELP? Hints
+

['Extract all four digits and multiply them. Any zero digit makes the result zero.']

ANSWER Solution
+
n = int(input())
a = n // 1000
b = n // 100 % 10
c = n // 10 % 10
d = n % 10
print(a * b * c * d)