class Solution:
    def addTwoInteger(self , Integer1: int, Integer2: int) -> int:
        result = Integer1 + Integer2
        return result