Codeforces-SolutionsA/791A-BearAndBigBrother/791A.cpp
2023-06-07 20:15:21 +06:00

15 lines
196 B
C++

#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,i;
cin>>a>>b;
for(i=1;a<=b;i++)
{
a=a*3;
b=b*2;
if(a>b) break;
}
cout<<i<<endl;
}