#include <stdio.h>
int main()
{
int a;
printf("Enter the numebr:\n");
scanf("%d",&a);
if (a>100)
{printf("%d",a);}
else if (a<=100)
{ if (a%2==0)
{printf("The given number is even");}
else
{printf("The given number is odd");}
}
}
To embed this project on your website, copy the following code and paste it into your website's HTML: