Воробьев Сергей Юрьевич 530 AnyPower 1237
Петров Николай Дмитриевич 319/2 AnyPower 2109
n1def is_power(n):n1def my_fun(num):
2    for base in range(2, int(n ** 0.5) + 1):2    for i in range(2, int(num ** 0.5) + 1):
3        temp = base3        j = i
4        while temp <= n:4        while j < num:
5            temp *= base5            j *= i
6            if temp == n:6        if j == num:
7                return 'YES'7            return 'YES'
8    return 'NO'8    return 'NO'
t9n = int(input())t9num = int(input())
10print(is_power(n))10print(my_fun(num))
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op