7 lines
162 B
Python
7 lines
162 B
Python
|
import hashlib
|
||
|
key = open("input.txt").read().replace("\n", "")
|
||
|
num=0
|
||
|
while hashlib.md5(f"{key}{num}".encode()).hexdigest()[:5] != "00000":
|
||
|
num+=1
|
||
|
print(num)
|