#include <stdio.h>

int main( ) {
   int a = 2, b = 7;
   
   int* p = &a;
   printf("%d\n", *p);
   
   p = &b;
   *p = 4;
   printf("%d\n", b);
}
