Read a CSV with header name,age and print names where age >= 18 (input order).
Read a CSV from stdin. The header is `name,age`. Print the **names** of rows where `age` is **18 or more**, in input order, one per line.
Test input:
name,age
Alice,17
Bob,22
Carol,30
Dave,15
Expected output:
Bob
Carol
Sign in to save your code and track progress across devices.