Skip to content

Instantly share code, notes, and snippets.

@showyou
Created May 12, 2018 13:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save showyou/592aaf473cd475419c94479e1c52b3ce to your computer and use it in GitHub Desktop.
Save showyou/592aaf473cd475419c94479e1c52b3ce to your computer and use it in GitHub Desktop.
x = int(input())
m = 1
for i in range(1, x):
for j in range(2, x):
k = pow(i, j)
if k <= x:
m = max(k, m)
else:
break
print(m)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment