n,m=map(int,input().split()) s=0 for x in range(n,m): s=s+x print(s)
------Input------ 5 13 ------Answer----- 81 ------Your output----- 68