#include <stdio.h> 
 
void foo(int a) {
    printf("a=%d\n",a);
    a ++;
    printf("a=%d\n",a);
}
 
int main() {
    foo(1);
    return 0;
}