Last active
December 11, 2017 21:04
-
-
Save suzusime/9f620734600533270a63fd269d66caf7 to your computer and use it in GitHub Desktop.
SECCON 2017 Online CTF - RunMe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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