Sorry! Posting Assignment is allowed only for commercial accounts.
def add(a, b, c = 0): return a+b+cprint(add(1, 3))print(add(1, 3, 4))