#!/bin/sh

if [ $# != 1 ]; then
	echo "Usage: `basename $0` xyzfile"
	exit 1
fi

grep -A 1 " N " "$1" | grep CT | awk '{print $1}'
