In software (like Python or C++), an operator like + is just a command for the CPU. In Verilog, it's very different.
Think of operators as Physical Gears. When you type a + b, you are telling the computer to build a real, physical "Adder" circuit made of transistors and copper wires.
The Cost of Math
Because these operators turn into real hardware, some are "heavier" than others. Addition (+) is like a small gear. Multiplication (*) is a giant, heavy gear that takes up a lot of space on the chip! Division (/) is so heavy that most engineers avoid using it entirely in RTL.