Sum of Squares Calculator

  • Share this:

Code introduction


Calculates the sum of squares of two numbers.


Technology Stack : Python built-in operators

Code Type : Mathematical operation function

Code Difficulty :


                
                    
def sum_squares(a, b):
    return a**2 + b**2