fork download
  1.  
  2. #include <iostream>
  3. #include <cmath>
  4. using namespace std;
  5. int main() {
  6.  
  7. long long n,x,y;
  8. cin>>n;
  9. x=sqrt(n);
  10. y=sqrt((n)-(x*x));
  11. if(x>0&&y>0&&(x*x+y*y)%n==0)
  12. {
  13. cout <<x<<" "<<y<<endl;
  14. }
  15. else{cout<<"No sloutions"<<endl;}
  16. return 0;
  17. }
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
No sloutions