let m=(a,b)=>{if(a>b)
return a;
else
return b};
let bt=m(5,7);
document.write("El numero mas grande es: "+bt+"
");