Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- """
- Copyright (c) 2023 Zeromega
- Drop a link or a Sub on one of my videos if this script help you, copy the link below
- https://www.youtube.com/channel/UCfqUJ4rmk6W-ZAjDtkBZ1CA?sub_confirmation=1
- """
- import threading
- def p_(*args):
- string = ''.join(chr(x) for x in args)
- print(string)
- def c_(nested, a, b, c, d, e, f, g, h, i):
- for num in range(10):
- if nested == 0:
- p_(49, 48, 48, 48, 32, 108, 105, 110, 101, 115, 32, 111, 102, 32, 99, 111, 100, 101, 32, 45, 32, a, b, c, d, e, f, g, h, i, num)
- else:
- c_(nested - 1, a, b, c, d, e, f, g, h, i)
- p_(111, 118, 101, 114)
- threads = []
- for a in range(10):
- for b in range(10):
- for c in range(10):
- for d in range(10):
- for e in range(10):
- for f in range(10):
- for g in range(10):
- for h in range(10):
- for i in range(10):
- thread = threading.Thread(target=c_, args=(5, a, b, c, d, e, f, g, h, i))
- threads.append(thread)
- thread.start()
- for thread in threads:
- thread.join()
- p_(69, 120, 116, 114, 101, 109, 101, 108, 121, 32, 99, 111, 109, 112, 108, 101, 120, 32, 99, 111, 100, 101, 32, 101, 120, 101, 99, 117, 116, 101, 100, 32, 115, 117, 99, 99, 101, 115, 115, 102, 117, 108, 108, 121)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement