#include <stdio.h>
int main() {
int num=1;
printf("enter a number \n");
scanf("%d",&num);
if (num >= 1){
printf("natural number");
} else{
printf(" not a natural number");
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: