#!/usr/bin/env python3
"""
Simple calculator with basic arithmetic operations.
Demonstrates Python functions and error handling.
"""
"""Add two numbers."""
return +
"""Subtract two numbers."""
return -
"""Multiply two numbers."""
return *
"""Divide two numbers with error handling."""
return /
=