#D8666. Change Making
Change Making
Change Making
You want to make change for cents. Assuming that you have infinite supply of coins of 1, 5, 10 and / or 25 cents coins respectively, find the minimum number of coins you need.
Constraints
Input
The integer is given in a line.
output
Print the minimum number of coins you need in a line.
Examples
Input
100
Output
4
Input
54321
Output
2175
inputFormat
Input
The integer is given in a line.
outputFormat
output
Print the minimum number of coins you need in a line.
Examples
Input
100
Output
4
Input
54321
Output
2175
样例
100
4