Created
January 21, 2024 10:29
-
-
Save kianurivzzz/efefce24d4cb03f3a64997b7c3d92297 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
simple_passwords = 200 | |
hard_passwords = 700 | |
broken_passwords = 530 | |
all_passwrods = 0 | |
for week in range(52): | |
all_passwrods += simple_passwords + hard_passwords - broken_passwords | |
print(f'Неделя {week + 1}: Невзломанных паролей: {all_passwrods}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment