1 2 3 4 5 6
def integer_sum(a: int, b: int): """Returns sum of two integers :param a: first integer :param b: second integer """ return a + b