Why testcase 2 is failing?

#include
using namespace std;
int main() {
int a, b, c;
cin >> a >> b >> c;
/cin >> b;
cin >> c;
/
if(a>b and a>c)
cout << a;
else if(b>a and b>c)
cout << b;
else
cout << c;
return 0;
}

by submitting this above code it is showing tastecase 2 failing. What will be the accurate code? Please guide.

hi @subarno_2001 use >= not > everywhere