a = 5
b = 4
def multiply():
    return a * b
print(multiply())