#D675. Favorite Sound

    ID: 561 Type: Default 2000ms 1073MiB

Favorite Sound

Favorite Sound

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?

Constraints

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

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.

Examples

Input

2 11 4

Output

4

Input

3 9 5

Output

3

Input

100 1 10

Output

0

inputFormat

input are integers.

  • 1 \leq A, B, C \leq 100

Input

Input is given from Standard Input in the following format:

A B C

outputFormat

Output

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

Examples

Input

2 11 4

Output

4

Input

3 9 5

Output

3

Input

100 1 10

Output

0

样例

3 9 5
3