7 lines
90 B
Python
7 lines
90 B
Python
def addition(a=1, b=2):
|
|
return a + b
|
|
|
|
|
|
def f(x: int, y: int) -> int:
|
|
return x + y
|