Last active
September 10, 2023 02:53
-
-
Save codeperfectplus/2c713e888bad386dd943b8e0bb4a03b2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def solveMeFirst(a:int,b:int): | |
| # Hint: Type return a+b below | |
| return a + b | |
| num1 = int(input()) | |
| num2 = int(input()) | |
| res = solveMeFirst(num1,num2) | |
| print(res) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment