/*
 * This is a "special" version of the ident protocol.  :-) 
 */

#include <stdio.h>

#define NAME "brnstnd@kramden.acf.nyu.edu"

main(argc,argv)
  int argc;
  char *argv[];
{
	int lport, fport;

	/* Get the local/foreign port pair from the luser */
	if (scanf("%d , %d", &lport, &fport) != 2) {
		printf("%d, %d: ERROR: UNKNOWN-ERROR\r\n", lport, fport);
		exit(1);
	}

	printf("%d, %d: USERID: UNIX: %s\r\n", lport, fport, NAME);
	exit(0);
}

