Problem1120--【例6.3】 套盒子

1120: 【例6.3】 套盒子

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 64 MB

Submit

Description

[md] 小明同学有很多大、中、小三种类型的盒子,分开放太占空间,他想把这些盒子套在一起,那样看起来更加整洁。但是他突然忘记他自己一共有多少个盒子了。他只记得: 一共有 $a$ 个大盒子,每个大盒子里面有 $b$ 个中盒子,每个中盒子里面有 $c$ 个小盒子。 现在他想知道自己一共有多少个盒子。 [/md]

Input

[md] 输入仅有一行,三个整数 $a$,$b$,$c$($0≤a ,b ,c≤1000$)。 [/md]

Output

[md] 输出一行一个整数,代表一共有多少个盒子。 [/md]

Sample Input Copy

1 1 1

Sample Output Copy

3

HINT

[md] [/md]

Source/Category