Regarding submission

my code is correct in this problem but it is showing that in only one test case it is working and you will not be getting 100 points, Please check my code and tell what is wrong in it
#include
using namespace std;
int main(){
int a,b,c;

cin>>a>>b>>c;
if(a>b && a>c){
    cout<<a<<endl;
}
if(b>a && b>c){
    cout<<b<<endl;
}
else{
    cout<<c<<endl;
}

}

hey @aryanguptaag52 your code isn’t readable here.
You can share this code using ide.codingblocks.com

  • A special url will be generated, share that url with me

I hope I’ve cleared your doubt. I ask you to please rate your experience here
Your feedback is very important. It helps us improve our platform and hence provide you
the learning experience you deserve.

On the off chance, you still have some questions or not find the answers satisfactory, you may reopen
the doubt.