coding practice-9

 write a program to print sum of even numbers from the N natural numbers



        n=int(input())

        s=0

        for i in range(1,n+1):

            if((i % 2)==0):

                s+=i

        print(s)    

Comments