#abc072a. [abc072_a]Sandglass2
[abc072_a]Sandglass2
Problem Statement
We have a sandglass that runs for seconds. The sand drops from the upper bulb at a rate of gram per second. That is, the upper bulb initially contains grams of sand.
How many grams of sand will the upper bulb contains after seconds?
Constraints
- and are integers.
Input
The input is given from Standard Input in the following format:
Output
Print the number of sand in the upper bulb after second.
Sample Input 1
100 17
Sample Output 1
83
out of the initial grams of sand will be consumed, resulting in grams.
Sample Input 2
48 58
Sample Output 2
0
All grams of sand will be gone, resulting in grams.
Sample Input 3
1000000000 1000000000
Sample Output 3
0