Sum of Two Integers

  • Share this:

Code introduction


Compute the sum of two integers.


Technology Stack : None

Code Type : Mathematical calculation

Code Difficulty :


                
                    
def a_list_sum(a, b):
    return a + b                
              
Tags: