#ABC125A. Biscuit Generator
Biscuit Generator
题目描述
A biscuit making machine produces biscuits at the following moments: seconds, seconds, seconds and each subsequent multiple of seconds after activation.
Find the total number of biscuits produced within seconds after activation.
一台饼干机在以下时刻生产 块饼干: 秒、 秒、 秒以及启动后 秒的倍数。
求启动后 秒内生产的饼干总数。
输入格式
输入内容按以下格式标准输入:
输出格式
打印启动后 秒内生产的饼干总数。
样例 #1
样例输入 #1
3 5 7
样例输出 #1
10
样例 #2
样例输入 #2
3 2 9
样例输出 #2
6
样例 #3
样例输入 #3
20 20 19
样例输出 #3
0
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
- 启动三秒后将产生五块饼干。
- 启动六秒后,再生产五块饼干。
- 因此,在启动后的 秒内,总共会生产出十块饼干。