#include using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); int64_t N; cin >> N; int64_t g = 0; for (int i = 0; i < 10; i++) { g = gcd(g, ((i + 1) + i + N) * N / 2); } cout << g << '\n'; return 0; }