#include <bits/stdc+
2025-12-27 09:58:28
发布于:江苏
4阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin >> n;
if(n == 0 || n % 2 == 1)
cout << 0 << " " << 0 << endl;
else
cout << ceil(1.0 * n / 4) <<" "<< n / 2;
return 0;
}
这里空空如也

有帮助,赞一个