#K96252. Unique Outfits

    ID: 39045 Type: Default 1000ms 256MiB

Unique Outfits

Unique Outfits

You are given the number of options available for tops, bottoms, and shoes, denoted by T, B, and S respectively. The task is to compute the total number of unique outfits that can be created by choosing one item from each category. According to the problem, the total number of outfits is given by the formula: $$T \times B \times S.$$

You need to read the three integers from stdin and output the product (i.e. the number of possible unique outfits) to stdout.

inputFormat

The input consists of a single line containing three space-separated integers: T (number of tops), B (number of bottoms), and S (number of shoes).

outputFormat

Output a single integer which is the product of the three given numbers, representing the total number of unique outfits.

## sample
3 2 4
24