You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
506 B

#include <bits/stdc++.h>
using namespace std;
int main() {
int n;
cin >> n;
for (int a = 0; a * a <= n / 2; a++)
for (int b = a; a * a + b * b <= n; b++)
for (int c = b; a * a + b * b + c * c <= n; c++) {
int t = n - a * a - b * b - c * c;
int d = sqrt(t);
if (d * d == t) {
printf("%d %d %d %d\n", a, b, c, d);
exit(0);
}
}
return 0;
}