Read the code carefully
# Python's compiler folds constant arithmetic at compile time.
# add(a, b) must load both args and call BINARY_OP at runtime.
# add_const() is folded to LOAD_CONST 3; RETURN_VALUE.
print('add_const')What will the program print? Write here: