def add(a, b):
    return a + b


def main():
    a, b = 10, 20
    print(f"{a} + {b} = {add(a, b)}")
