Прочитай код уважно
import dis
def add(a, b):
return a + b
def add_const():
return 1 + 2
# Imagine running:
# dis.dis(add)
# dis.dis(add_const)
#
# Which body compiles to FEWER bytecode ops once CPython's peephole
# / constant-folding passes are done?
#
# Print the name of the winning function: 'add' or 'add_const'.
# Type your prediction.Що виведе програма? Напиши тут: