#include<stdio.h>

void main() {
   int x;

   printf("address of x = %ld\n",(long)&x);
}
