Skip to content

Instantly share code, notes, and snippets.

@kianurivzzz
Created January 21, 2024 10:29
Show Gist options
  • Save kianurivzzz/efefce24d4cb03f3a64997b7c3d92297 to your computer and use it in GitHub Desktop.
Save kianurivzzz/efefce24d4cb03f3a64997b7c3d92297 to your computer and use it in GitHub Desktop.
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