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