n = int(input()) r = n * (n - 1) // 2 def gcd(a, b): if b == 0: return a else: return gcd(b, a % b) print(gcd(n, r))