Problem10559--ABC120 —— A - Favorite Sound

10559: ABC120 —— A - Favorite Sound

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 512 MiB

Description

Takahashi likes the sound when he buys a drink from a vending machine.

That sound can be heard by spending $A$ yen (the currency of Japan) each time.

Takahashi has $B$ yen. He will hear the sound as many times as he can with that money, but at most $C$ times, as he would be satisfied at that time.

How many times will he hear the sound?

Input

Input is given from Standard Input in the following format:

```
$A$ $B$ $C$
```

Output

Print the number of times Takahashi will hear his favorite sound.

Constraints

-   All values in input are integers.
-   $1 \leq A, B, C \leq 100$

Sample 1 Input

2 11 4

Sample 1 Output

4
Since he has not less than 8 yen, he will hear the sound four times and be satisfied.

Sample 2 Input

3 9 5

Sample 2 Output

3
He may not be able to be satisfied.

Sample 3 Input

100 1 10

Sample 3 Output

0

Source/Category