130304 - 三数的乘积
Time Limit : 1 秒
Memory Limit : 128 MB
读入三个数,并且计算它们的乘积。
Input
输入三行,是三个整数a、b、c。(11 ≤ a、b、c ≤ 100)
Output
输出为一行,其中包含一个整数,是 a、b、c 三个整数的乘积。
Examples
Input
2 3 4
Output
24