#include <stdio.h>
int main()
{
float per;
printf("Enter percentage of student : ");
scanf("%f",&per);
if(per>=40) //Outer if
{
if(per>=60) //Inner if
printf("First division");
else
printf("Second division");
}
else
{
printf("Third division");
}
return 0;
}