#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;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: