int my_func(int x) {
  return x+1;
}

int main() {
  int x = 56;

  x = my_func(x);

  int y = 78;
}