My issue
My codes are runs but when I submit than they wrong and for my confirmation I check other’s solution so there solution are also exact same to my code
My code
#include <iostream>
using namespace std;
int main() {
int t;
cin>>t;
while (t--)
{
int x,y,z;
cin>>x>>y>>z;
if(x+y+z == 180)
{
cout<<"yes"<<endl;
}
else
{
cout<<"no"<<endl;
}
}
// your code goes here
return 0;
}
Problem Link: FLOW013 Problem - CodeChef