100 atcoder#ABC125A. [ABC125A] Biscuit Generator
[ABC125A] Biscuit Generator
Score : points
Problem Statement
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.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the total number of biscuits produced within seconds after activation.
3 5 7
10
- Five biscuits will be produced three seconds after activation.
- Another five biscuits will be produced six seconds after activation.
- Thus, a total of ten biscuits will be produced within seconds after activation.
3 2 9
6
20 20 19
0