#include <stdio.h> int main(void) { int a=3,*p,**t,*n,**m; p=&a; t=&p; n=&t; m=*n; printf("%d %d\n",**t,**m); return 0; }