Codechef Problem 4:

 Highest Divisor :

n=int(input())

max1=1


for i in range(1,11):

    if (n%i == 

        0):

            max1=i

print(max1)

    

Comments