#include using namespace std; using Int = long long; const char newl = '\n'; template inline void chmin(T1 &a,T2 b){if(a>b) a=b;} template inline void chmax(T1 &a,T2 b){if(a void drop(const T &x){cout< vector read(size_t n){ vector ts(n); for(size_t i=0;i>ts[i]; return ts; } //INSERT ABOVE HERE // [a, b] Int sum(Int a,Int b){ if(a>b) return 0; return (a+b)*(b-a+1)/2; } // [1, n] Int calc(Int d,Int n){ Int x=n/d; Int y=n%d; return sum(1,d)*x+sum(1,y); } signed solve(){ Int d,a,b; cin>>d>>a>>b; if(a==0) a++; cout<>T; while(T--) solve(); return 0; }