###↓自分で書いてみたが、TLEになってしまった # N = int(input()) ##自然数N # count = 1 ##Nの約数の数を数える変数 # for i in range(int(N/2)): # if N % (i+1) == 0: # count += 1 # print(N-count)##約数でない数を出力する import sys input = sys.stdin.readline N = int(input()) ##自然数N count = 1 ##Nの約数の数を数える変数 for i in range(1,int(N/2)+1): if N % (i) == 0: count += 1 print(N-count)##約数でない数を出力する