------
## 最终结论
```python
def is_simple_power(x, n):
    if x == 1:
        return True
    while x % n == 0:
        x //= n
    return x == 1
```