1
2
3
4
5
6
7
8
|
def solveMeFirst(a,b):
# Hint: Type return a+b below
return a+b
num1 = int(input())
num2 = int(input())
res = solveMeFirst(num1,num2)
print(res)
|
cs |
반응형
'python-algorithm' 카테고리의 다른 글
Hacker rank Compare the Triplets (0) | 2021.10.26 |
---|---|
Hacker rank Simple Array Sum (0) | 2021.10.26 |
Leetcode 136. Single Number (0) | 2021.09.24 |
Leetcode 1614. Maximum Nesting Depth of the Parentheses (0) | 2021.08.31 |
Leetcode 1979. Find Greatest Common Divisor of Array (0) | 2021.08.31 |
댓글