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