LL x, y, z; for (int c = 1; c <= Case; c++) { printf("Case %d: ", c);
scanf("%lld%lld%lld", &x, &y, &z); if (y > x) swap(x, y); if (z > x) swap(x, z); if (z > y) swap(y, z);
if (z <= 0 || x >= y + z) puts("Invalid"); elseif (x == y&&y == z) puts("Equilateral"); elseif (x == y || y == z) puts("Isosceles"); else puts("Scalene"); }
return0; } voidswap(LL &a, LL &b) { LL temp = a; a = b; b = temp; }