diff --git a/math.py b/math.py index 8a8998d..3cf7e16 100644 --- a/math.py +++ b/math.py @@ -1,6 +1,8 @@ #!/usr/bin/env python -a = 1 -b = 2 -c = a + b -print(c) +def multiply(first, second): + result = first * second + return result + +if __name__ == '__main__': + multiply(8, 9)