#include <stdio.h>

int main(void) {
	int a;
	int *b;
	a = 1;
	b = &a;
	*b = 2;
	printf("a = %d\n", a);
	printf("b = %d\n", *b);
	return 0;
}
