//  Ces programmes sont sous licence CeCILL-B V1.
int a;

void f(int x) {
  println(* x);
  a = * x;
}
void main() {
  int n;
  a = 3;
  n = 4;
  f(a + n);
}