def add(a:int, b:int=0): return a + b print(add(1)) # Prints 1 print(add(1, 2)) # Prints 3