This is the solution of this problem in python: X=int(input())Y=int(input())mult=1for i in range(X,Y+1): if(i%13!=0): mult=mult+iprint(mult)
No comments