#include <stdio.h>
int main() {
int a,b,result;
printf("enter the values of a&b\n");
scanf("%d%d",&a,&b);
result=a<b;
printf("the less than of two numbers is %d\n", result);
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: