coding practice-9 Get link Facebook X Pinterest Email Other Apps April 05, 2022 write a program to print sum of even numbers from N to M natural numbers m=int(input()) n=int(input()) t=0 for i in range(m,n+1): if((i%2)==0): t+=i print(t) Get link Facebook X Pinterest Email Other Apps Comments
Comments
Post a Comment