Count how many filenames in stdin end with a suspicious extension.
You're triaging a download folder. Count files with extensions in the suspicious set:
`exe, bat, ps1, scr, vbs, js, cmd`.
Read filenames (one per line) from stdin and print a single integer: the count of suspicious files.
Hint: split on the LAST `.` and lowercase the extension. Files without a dot are safe.
Sign in to save your code and track progress across devices.