Alwaldend
Docs
Light
Dark
Auto
Docs
Misc
Leetcode submissions
2023-07-21 13:18:37 +0300 MSK
2023-07-21 13:18:37 +0300 MSK
Add Two Integers
Tags:
Generated
Leetcode_submission
Links
https://leetcode.com/submissions/detail/1000084810/
Code
class
Solution
:
def
sum
(self, num1: int, num2: int)
->
int:
return
num1
+
num2