#!/bin/sh
while read a; do
	(dig $a | grep $a | grep -v '^;' > /dev/null) || echo "$a"
done
