Run ID:150718

提交时间:2026-03-30 17:02:58

#include<iostream> using namespace std; int main(){ int w,e,x; cin>>x>>w; e=0; for(;x<=w;x++){ e=e+x; } cout<<e; }