Mini Quiz 3 Version 2

Speeding tickets result in points and cause increase in insurance rates.
Write a program that calculates the new yearly insurance preminum and monthly insurance payment for the next insurance term after the person receives violation points.

Input:
the current insurance cost per year and the number of points person received in current year (integer).

Output:
1. the new yearly insurance premium
2. the new monthly payment.

Use the following table:

Insurance Rate Increase based on Speeding Points
points: rate increase in percent
3 points and more: 25% increase
1-2 points: 10% increase
NO POINTS:NO rate increase (0%)

Assume that input is valid.