Problem Statement

Write a Python script that reads `employees.csv` (id, name, department, salary) and prints only employees from the Engineering department with salary > 80000.

Sample Data

employees.csv
id,name,department,salary
1,Alice,Engineering,90000
2,Bob,Marketing,70000
3,Carol,Engineering,95000
4,Dave,Engineering,75000

Expected Output

Filtered results:
1, Alice, Engineering, 90000
3, Carol, Engineering, 95000

Your Submission

ℹ️ The AI reads and reviews your code — it does not run it. Runtime errors like missing files or wrong paths won't affect your score. Focus on writing clean, correct logic.
Submit your work — choose one or more options
OR
OR