AZ=[ chr(i) for i in range(ord("A"),ord("Z")+1)] S=list(input()) for s in S: try: AZ.remove(s) except ValueError: print("NO") exit() print("YES")