4 lines
70 B
Python
4 lines
70 B
Python
|
|
||
|
def add(a:int, b:int) -> int:
|
||
|
"""Add two ints"""
|
||
|
return a + b
|