Codeforces-SolutionsA/Codes/791 A - Bear And Big Brother/791A.cpp

15 lines
196 B
C++
Raw Permalink Normal View History

2023-06-07 22:15:21 +08:00
#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;
}