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 << endl;
  12. else
  13. continue;
  14. }
  15. }
  16. }
  17. return 0;
  18. }
Success #stdin #stdout 0.01s 5288KB
stdin
20
stdout
3 4 5
4 3 5
5 12 13
6 8 10
8 6 10
8 15 17
9 12 15
12 5 13
12 9 15
12 16 20
15 8 17
16 12 20