def main(): N = int(input()) for i in range(2,N-1): if N % i == 0: print("NO") exit() print("YES") if __name__ == "__main__": main()