题干:

Little Lesha loves listening to music via his smartphone. But the smartphone doesn't have much memory, so Lesha listens to his favorite songs in a well-known social network InTalk.

Unfortunately, internet is not that fast in the city of Ekaterinozavodsk and the song takes a lot of time to download. But Lesha is quite impatient. The song's duration is T seconds. Lesha downloads the first S seconds of the song and plays it. When the playback reaches the point that has not yet been downloaded, Lesha immediately plays the song from the start (the loaded part of the song stays in his phone, and the download is continued from the same place), and it happens until the song is downloaded completely and Lesha listens to it to the end. For q seconds of real time the Internet allows you to download q - 1 seconds of the track.

Tell Lesha, for how many times he will start the song, including the very first start.

Input

The single line contains three integers T, S, q (2 ≤ q ≤ 104, 1 ≤ S < T ≤ 105).

Output

Print a single integer — the number of times the song will be restarted.

Examples

Input

5 2 2

Output

2

Input

5 4 7

Output

1

Input

6 2 3

Output

1

Note

In the first test, the song is played twice faster than it is downloaded, which means that during four first seconds Lesha reaches the moment that has not been downloaded, and starts the song again. After another two seconds, the song is downloaded completely, and thus, Lesha starts the song twice.

In the second test, the song is almost downloaded, and Lesha will start it only once.

In the third sample test the download finishes and Lesha finishes listening at the same moment. Note that song isn't restarted in this case.

题目大意:

   给你一首歌的播放时间T,下载S秒后开始播放,对于每q秒可以下载q-1的内容(即下载速度为q-1秒 / q秒)。

解题报告:

   类似一个追及问题,设temp秒后听到没有下载的地方,即在第temp秒时,他俩相遇(“播放”和“下载”)得到temp*(q-1)/q + S = temp 即 temp = q*S,直到 S > T 表示下载完毕。

AC代码:

#include<bits/stdc++.h>
 
using namespace std;
 
int T,S,q;
 
int main()
{
    while(~scanf("%d%d%d",&T,&S,&q)){
        int sum = 0;
        while(S < T){
            S = S * q;
            sum++;
        }
        printf("%d\n",sum);
    }
    return 0;
}