#include <stdio.h> int test2(int x,int y,int z) { if(x+y>z&&z>x-y) return 1; else return 0; } void test1(int a ,int b, int c ) { if(test2(a,b,c)&&test2(b,a,c)&&test2(c,a,b)) { if(a==b&&b==c) printf("Eq...