Concept Flow - awk basics (field processing)
Start: Read line from input
Split line into fields
Process fields using $1, $2, ...
Perform action (print, calculate, etc.)
Read next line or end if no more lines
Awk reads each line, splits it into fields, processes fields by position, then performs actions like printing.