Code isnt running

#include
int main() {
int a,b,c;
std::cout <<“enter 3 numbers:”;
std::cin>>a;
std::cin>>b;
std::cin>>c;
if(a>b && a>c){
std::cout<<“largest number is”<< a;
}
else if(b>a && b>c){
std::cout<<“largest number is”<< b;
}
else
std::cout<<“largest number is”<<c;
return 0;
}

sir this code isnt running …am not getting why

hi @vibhasinghddu_56345daa4bd4496c just print the no no need of printing “largest number is”
and use >= not >, also no need to print enter 3 numbers:. Just take input and prnt the largest

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.