Blame view

P90133_en/S001-AC.cc 299 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <iostream>

using namespace std;

int main()
{
	int a,b,base,exp;
	while(1)
	{
		cin >> a;
		if(cin.eof())
		{
			return 0;
		}
		cin >> b;
		base = 1;
		exp = 0;
		while(base != b)
		{
			if(base > b)
			{
				exp--;
				break;
			}
			base *= a;
			exp++;
		}
		cout << exp << endl;
	}
}