Skip to content

Instantly share code, notes, and snippets.

@suzusime
Last active December 11, 2017 21:04
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 suzusime/9f620734600533270a63fd269d66caf7 to your computer and use it in GitHub Desktop.
Save suzusime/9f620734600533270a63fd269d66caf7 to your computer and use it in GitHub Desktop.
SECCON 2017 Online CTF - RunMe
import sys
n1=0
n2=1
for i in range(11011-1):
tmp=n1+n2
n1=n2
n2=tmp
print("SECCON{" + str(n2)[:32] + "}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment