Open Command Prompt.
Paste this command and replace your-password
with your password.
echo|set /p="your-password" > %TMP%/hash.txt | certutil -hashfile %TMP%/hash.txt SHA256 | findstr /v "hash"
import term | |
import rand | |
import os | |
fn main() { | |
mut height := 0 | |
for { | |
height = os.input('Enter the christmas tree height (an integer greater than 4): ').int() | |
if height > 4 { | |
break |