#include using namespace std; int main(){ int a,b; cin >> a >> b; int cnt=0; while(b/a < 1){ b/a; ++cnt; } cout << cnt << endl; }