C Quick Refresher

if structure program.
What is the output of the following program?
int main()
{
int a, b, c;
a = 5;
b = 10;
c = 7;
if(a>b && a>c)
printf("%d", a);
else if(b>c)
printf("%d", b);
else
printf("%d", c);
}

No Comments..!