S, F = map(int, input().split()) if S < F: print(1) else: for i in range(1, 500): if S > F: F += F else: print(i+1) quit()