fky

FKY 2023-08-29 20:30:14 4 返回题目

#include<bits/stdc++.h> using namespace std; int main(){ int m; cin >> m; int n; cin >> n; int sum = 0; while (m <= n){ sum = sum + m; m = m + 1; } cout << sum << endl; return 0; }

{{ vote && vote.total.up }}