#include <stdio.h>

int main() {
  int *pi;

  printf("Supply an integer: ");
  scanf("%d",pi);
  
  return 0;
}
