fork(1) download
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main() {
  5. int n;
  6. cin >> n;
  7. for(int a=1; a<=n; a++){
  8. for(int b=1; b<=n; b++){
  9. for(int c=1; c<=n; c++){
  10. if(a*a + b*b == c*c)
  11. cout << a << " " << b << " " << c;
  12. else
  13. continue;
  14. }
  15. }
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5288KB
stdin
20
stdout
3 4 54 3 55 12 136 8 108 6 108 15 179 12 1512 5 1312 9 1512 16 2015 8 1716 12 20