#include <stdio.h>
int main()
{
int age;
printf("Please Enter Your Age Here:
");
scanf("%d",&age);
if ( age < 18 )
{
printf("You are Minor.
");
printf("Not Eligible to Work");
}
else
{
if (age >= 18 && age <= 60 )
{
printf("You are Eligible to Work
");
printf("Please fill in your details and apply
");
}
else
{
printf("You are too old to work as per the Government rules
");
printf("Please Collect your pension!
");
}
}
return 0;
}