I'm a beginner in programming, and i'm really wondering what's my mistake here :
static void Main(string[] args)
{
int a = int.Parse(Console.ReadLine());
int b = int.Parse(Console.ReadLine());
int c = int.Parse(Console.ReadLine());
if ((a > b) && (a > c))
{
Console.WriteLine(a);
}
else
{
if ((b > a) && (b > c)) ;
{
Console.WriteLine(b);
}
else
{
Console.WriteLine(c);
}
}
}