Write add, subtract, multiply, divide functions in src/calc.py.
All functions take two numeric arguments and return the result.
Division by zero should raise ValueError with a message containing "zero".
All operations must handle negative numbers and floats correctly.
