#include<bits/stdc++.h>
using namespace std;
int main()
{
int a,b,c;
cout << "Enter the value of a:-> " << endl;
cin >> a;
cout << "Enter the value of b:-> " << endl;
cin >> c;
cout << "Enter the value of c:-> " << endl;
cin >> c;
if(a>b && a>c)
{
cout << "Largest number is a which is " << a << endl;
}
else if(b>a && b>c)
{
cout << "Largest number is b which is " << b << endl;
}
else
{
cout << "Largest number is c which is " << c << endl;
}
return 0;
}