user@example.com
VALID
import re s=input().strip() if re.match(r'^[\w.]+@[\w]+\.[\w]+$', s): print('VALID') else: print('INVALID')