var input1 = 56
var input2 = 89
if(input1>input2)
{
    console.log(input1+" is larger than "+input2);
}
else
{
    console.log(input2+" is larger than "+input1);
}

Embed on website

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