# 021: If Statements # Conditional execution age = 20 if age >= 18: show "You are an adult" # Only runs if condition is true score = 85 if score >= 90: show "Grade: A" if score >= 80: show "Grade: B" # Both conditions can be true