题库练习 Tile Painting
← 上一题 下一题 →

A12871 | Tile Painting

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Ujan has been lazy lately, but now has decided to bring his yard to good shape. First, he decided to paint the path from his house to the gate.

The path consists of $n$ consecutive tiles, numbered from $1$ to $n$ . Ujan will paint each tile in some color. He will consider the path aesthetic if for any two different tiles with numbers $i$ and $j$ , such that $|j - i|$ is a divisor of $n$ greater than $1$ , they have the same color. Formally, the colors of two tiles with numbers $i$ and $j$ should be the same if $|i-j| > 1$ and $n \bmod |i-j| = 0$ (where $x \bmod y$ is the remainder when dividing $x$ by $y$ ).

Ujan wants to brighten up space. What is the maximum number of different colors that Ujan can use, so that the path is aesthetic?

输入格式

The first line of input contains a single integer $n$ ( $1 \leq n \leq 10^{12}$ ), the length of the path.

输出格式

Output a single integer, the maximum possible number of colors that the path can be painted in.

输入输出样例

输入 #1
4
输出 #1
2
输入 #2
5
输出 #2
5
C++ 编辑器
输入
输出