Чему равен
x
после выполнения этой программы?
int my_func(int x) { if (x <= 0) return 0; return x + my_func(x - 2); } x = my_func({{a}});