Leetcode 2383 Solution

This article provides solution to leetcode question 2383 (add-two-integers)

https://leetcode.com/problems/add-two-integers

Solution

class Solution:
    def sum(self, num1: int, num2: int) -> int:
        return num1 + num2