import sys

a={
    'admis':'Nowcoder666'
}
b=input()
c=input()

if b in a.keys():
    if c == a.get(b):
        print("Welcome!")
    else:
        print("user id or password is not correct!")
else:    
    print("user id or password is not correct!")