Codeforces-SolutionsA/Codes/791 A - Bear And Big Brother/791A.cpp
2023-12-31 14:54:40 +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;
}