# Function to demonstrate procedural abstraction
def procedural_abstraction(number):
    # Square the input number
    result = number * number
    return result
    

# Function to calculate the sum of two numbers
def summing_machine(first_number, second_number):
    # Calculate the sum
    result = first_number + second_number
    return result

# Calculate the sum of 7 and 5 using the summing_machine function
result_sum = summing_machine(7, 5)

# Print the result
print("The sum of 7 and 5 is:", result_sum)
# Printing 5 squared
procedural_abstraction(5)
The sum of 7 and 5 is: 12





25