__author__ = 'Zlobober' n = int(raw_input()) t = 2 ans = 1 while t * t <= n: if n % t == 0: ans *= t while n % t == 0: n /= t t += 1 if n > 1: ans *= n print ans
Standard input is empty
Standard output is empty
Traceback (most recent call last): File "prog.py", line 3, in <module> EOFError: EOF when reading a line