N = int(input()) ##自然数N count = 1 ##Nの約数の数を数える変数 for i in range(int(N/2)): if N % (i+1) == 0: count += 1 print(N-count)##約数でない数を出力する