Run ID:132319
提交时间:2025-10-07 22:11:04
#include <iostream> //designed by hu 2025-10 using namespace std; int main(){ int tot =0; int m,n; cin>>m>>n; for(int i=m;i<=n;i++) { if(i%13==0) { tot += i; } } cout<< tot; return 0; }