//************************ // Bagheri. Naser //ProjectEuler Problem #9 //************************ #include using namespace std; int main() { for(int a=1;a<1000;a++) { for(int b=a;b+a<1000;b++) { int c = 1000-a-b; if((a*a)+(b*b)==(c*c)) {cout<