Write a function check_port_security(port: int) -> str that returns 'HTTPS (Secure)' for 443, 'HTTP (Insecure)' for 80, 'SSH' for 22, and 'Unknown Port' otherwise.
[*] Port 443: HTTPS (Secure) [*] Port 80: HTTP (Insecure) [*] Port 22: SSH [*] Port 8080: Unknown Port [✓] Conditionals evaluated cleanly (Time: 0.015s, Memory: 14.0 MB)