#include <stdio.h>int main(){ int a,b,i,sum=0; scanf("%d %d",&a,&b); for(i=a;i<=b;i++) { sum=sum+i; printf("%d ",sum); } return 0;}//마이너스 인식이 안됩니다