My issue
error
My code
#include<iostream>
using namespace std;
int main()
{
int t;
cin>>t;
for(;;t--)
{ int a,b,c;
cin>>a>>b>>c;
if(a!=b && b!=c && c!=a)
{cout<<"yes";}
else
{cout<<"no";}
}
return 0;
}
Learning course: Basic Math using C++
Problem Link: Scalene Triangle Practice Problem in - CodeChef