def addition(a=1, b=2): return a + b def f(x: int, y: int) -> int: return x + y if __name__ == "__main__": print(addition(5, 5))