2023-07-21 13:18:37 +0300 MSK

Add Two Integers

Code

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