#include <stdio.h>

int main ( void ) {
  int x, y;
  printf("Enter a coordinate:\n");
  scanf( "%d %d", &x, &y );
  /* note that two variables are read */
  printf("The coordinate is (%d,%d)\n", x, y );
  return 0;
}
