-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathI SMOKE CRACK.py
48 lines (41 loc) · 1.66 KB
/
I SMOKE CRACK.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
def beaf(x,y,z):
if z == 1:
return x**y
result = y
for i in range(y-1):
result = beaf(x,result,z-1)
return result
def ack(m, n):
if m==0: return n+1
if m>0 and n==0: return ack(m-1, 1)
if m>0 and n>0: return ack(m-1, ack(m, n-1))
def pentation(a, b):
result = 1
for i in range(b):
result = tetration(a, b)
return result
def tetration(a, b):
result = 1
for i in range(b):
result = a ** result
return result
def funny(a):
a = pentation(a, a)
a = ack(a, a)
a = beaf(a, a, a)
v0 = beaf(100, 100, ack(69420, 69420))
q = ack(pentation(69420, 69420), pentation(69420, 69420))
for i in range(q):
v0 = v0 ** v0
for i in range(1, 69421): #globals()[f"v{i-1}"]
globals()[f"v{i}"] = beaf(pentation(pentation(pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]), pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"])), pentation(pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]), pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]))), pentation(pentation(pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]), pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"])), pentation(pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]), pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]))), pentation(pentation(pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]), pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"])), pentation(pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]), pentation(globals()[f"v{i-1}"], globals()[f"v{i-1}"]))))
crack = ack(v69420, q)**ack(q, v69420)
funny(crack)
print('XD')
while True:
input()
crack = crack - 1
print(crack)
if crack == 0:
print('gg')
exit()