def integer_sum(a: int, b: int): """Returns sum of two integers :param a: first integer :param b: second integer """ return a + b