Vérifiez si un nombre est un cube parfait en python
x = int(input())
print(int(round(x ** (1. / 3))) ** 3 == x)
Strange Seal
x = int(input())
print(int(round(x ** (1. / 3))) ** 3 == x)