# 022: If-Else # Choose between two paths age = 16 if age >= 18: show "You can vote" else: show "Too young to vote" # Check password strength password = "abc" if password.length >= 8: show "Strong password" else: show "Password too short"