2 lines
53 B
Python
2 lines
53 B
Python
def add(n1: int, n2: int) -> int:
|
|
return n1 + n2
|
def add(n1: int, n2: int) -> int:
|
|
return n1 + n2
|