9358: CCC '22 J1 - Cupcake Party
[Creator : ]
Description
A regular box of cupcakes holds 8 cupcakes, while a small box holds 3 cupcakes. There are 28 students in a class and a total of at least 28 cupcakes. Your job is to determine how many cupcakes will be left over if each student gets one cupcake.
Input
The input consists of two lines.
- The first line contains an integer R≥0, representing the number of regular boxes.
- The second line contains an integer S≥0, representing the number of small boxes.
Output
Output the number of cupcakes that are left over.
Sample 1 Input
2
5
Sample 1 Output
3
The total number of cupcakes is 2×8+5×3 which equals 31. Since there are 28 students, there are 3 cupcakes left over.
Sample 2 Input
2
4
Sample 2 Output
0
The total number of cupcakes is 2×8+4×3 which equals 28. Since there are 28 students, there are no cupcakes left over.