import re

s = input("Email: ")

if re.match('^[\w._]+@[\w._]+\.[\w._]+$', s): print('Okay')
else: print('Invalid')