TISHEN • 1个月前
using namespace std;
int main() {
int a,b,c=1; cin>>a>>b; for(int i=a;i<=b;i++) { c = c * i; } cout << c; return 0;
}
评论:
请先登录,才能进行评论