#include<stdio.h>
#include<conio.h>
void main()
{
int year;
clrscr ();
printf("\nEnter year");
scanf("\n%d",&year);
if(year%4==0)
{
printf("\n year is leap");
}
else
{
printf("\n year is not leap");
}
getch();
}