Update sol2.py

This commit is contained in:
Harshil 2018-10-24 12:50:39 +02:00 committed by GitHub
parent 11480295d4
commit ed11384116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,13 @@ Problem:
The prime factors of 13195 are 5,7,13 and 29. What is the largest prime factor of a given number N?
e.g. for 10, largest prime factor = 5. For 17, largest prime factor = 17.
'''
from __future__ import print_function
try:
raw_input # Python 2
except NameError:
raw_input = input # Python 3
n=int(raw_input())
prime=1
i=2