# Author: Scott Wehrwein
# Date: 4/26/2021
# Define a function that adds two numbers together and prints the result.

def add2(a, b):
    print("The sum is", a + b)