Skip to content

Instantly share code, notes, and snippets.

@ukaszjankowski
Created May 12, 2017 15:51
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 ukaszjankowski/70b0f13852f41530ff4179fb160de17a to your computer and use it in GitHub Desktop.
Save ukaszjankowski/70b0f13852f41530ff4179fb160de17a to your computer and use it in GitHub Desktop.
def magic1(a, b):
return a + b
def magic2(a, b):
o = 0
i = 0
while i < b:
o = magic1(o, a)
i += 1
return o
n1 = int("2867279575674690971609643216365"
"4161626212087501848651843132337"
"3373323997065608342")
n2 = int("1240905467219837578349182398365"
"3459812983123659128386518235966"
"4109783723654812937")
n = magic2(magic1(n1, n2), 1337)
print hex(n)[2:-1].decode("hex").splitlines()[0]
# Haslo: "WolneOprogramowanie!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment